From 9cbe7794d1bfaf2221ef768395590a23a2b8d907 Mon Sep 17 00:00:00 2001 From: Jesse Smith Date: Fri, 22 May 2015 15:09:16 -0300 Subject: 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. --- lumina-desktop/LSession.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lumina-desktop') 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 -- cgit