aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorJesse Smith <jsmith@resonatingmedia.com>2015-05-22 15:09:16 -0300
committerJesse Smith <jsmith@resonatingmedia.com>2015-05-22 15:09:16 -0300
commit9cbe7794d1bfaf2221ef768395590a23a2b8d907 (patch)
tree9e694a7417ed337e518d4e575d81e1a0a1f71524 /lumina-desktop/LSession.cpp
parentFinish cleaning up the new CPU/Memory desction routines in libLumina, and add... (diff)
downloadlumina-9cbe7794d1bfaf2221ef768395590a23a2b8d907.tar.gz
lumina-9cbe7794d1bfaf2221ef768395590a23a2b8d907.tar.bz2
lumina-9cbe7794d1bfaf2221ef768395590a23a2b8d907.zip
Make sure disabled numlock stays off. Updated Linux shutdown command.
This patch primarily fixes two minor issues. 1. When number lock is disabled in the session settings, it should now turn off when Lumina starts. 2. In the Linux portion of libLumina, the shutdown command has been updated. 3. A minor typo was fixed in the dependency list.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r--lumina-desktop/LSession.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index 1fe20376..59e6fe57 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -229,6 +229,9 @@ void LSession::launchStartupApps(){
if(sessionsettings->value("EnableNumlock",false).toBool()){
QProcess::startDetached("numlockx on");
}
+ else{
+ QProcess::startDetached("numlockx off");
+ }
}
//First create the list of all possible locations in order of precedence
bgstack15