aboutsummaryrefslogtreecommitdiff
path: root/lumina-wm-INCOMPLETE/main.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-11-04 15:17:55 -0500
committerKen Moore <moorekou@gmail.com>2015-11-04 15:17:55 -0500
commit8b95f0279ddf0d35141ed5bf7aa348b2b761aebc (patch)
treec01e1d39518f150e02e4ffb35d915415c2947e1b /lumina-wm-INCOMPLETE/main.cpp
parentTweak the text in the desktop plugin menu a bit. (diff)
downloadlumina-8b95f0279ddf0d35141ed5bf7aa348b2b761aebc.tar.gz
lumina-8b95f0279ddf0d35141ed5bf7aa348b2b761aebc.tar.bz2
lumina-8b95f0279ddf0d35141ed5bf7aa348b2b761aebc.zip
Get the new lockscreen all setup and (somewhat) functional in the screensaver. Also setup the screensaver so that the "--test-ss" option makes it fully-functional even if the WM event handler is not installed for valid testing).
The *only* thing which is still broken is that PAM is allowing all passwords for the user to unlock the system (probably some kind of password cache for the current credentials?). Still need to find some way to register a "lock" with PAM so that it forces the validation of the user's login credentials again.
Diffstat (limited to 'lumina-wm-INCOMPLETE/main.cpp')
-rw-r--r--lumina-wm-INCOMPLETE/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-wm-INCOMPLETE/main.cpp b/lumina-wm-INCOMPLETE/main.cpp
index 53079a2f..9ac227c8 100644
--- a/lumina-wm-INCOMPLETE/main.cpp
+++ b/lumina-wm-INCOMPLETE/main.cpp
@@ -51,6 +51,7 @@ int main(int argc, char ** argv)
w.start(a.inputlist.contains("--test-ss"));
QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(reloadIcons()) );
QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(newInputsAvailable(QStringList)) );
+ if(!a.inputlist.isEmpty()){ w.newInputsAvailable(a.inputlist); }
int retCode = a.exec();
return retCode;
bgstack15