aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-05-22 16:08:10 -0400
committerKen Moore <moorekou@gmail.com>2015-05-22 16:08:10 -0400
commitcd582c51f74fdefae335fee527d1deb5b3cf483f (patch)
treec192c203c0b29aa2480ae6ce8a2a0429a94149f5 /lumina-desktop
parentFix a missing icon in the new system monitor plugin. (diff)
parentMake sure disabled numlock stays off. Updated Linux shutdown command. (diff)
downloadlumina-cd582c51f74fdefae335fee527d1deb5b3cf483f.tar.gz
lumina-cd582c51f74fdefae335fee527d1deb5b3cf483f.tar.bz2
lumina-cd582c51f74fdefae335fee527d1deb5b3cf483f.zip
Merge pull request #125 from pcbsd/linux
Make sure disabled numlock stays off. Updated Linux shutdown command.
Diffstat (limited to 'lumina-desktop')
-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