diff options
author | Ken Moore <moorekou@gmail.com> | 2015-05-22 16:08:10 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-05-22 16:08:10 -0400 |
commit | cd582c51f74fdefae335fee527d1deb5b3cf483f (patch) | |
tree | c192c203c0b29aa2480ae6ce8a2a0429a94149f5 /libLumina | |
parent | Fix a missing icon in the new system monitor plugin. (diff) | |
parent | Make sure disabled numlock stays off. Updated Linux shutdown command. (diff) | |
download | lumina-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 'libLumina')
-rw-r--r-- | libLumina/LuminaOS-Linux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libLumina/LuminaOS-Linux.cpp b/libLumina/LuminaOS-Linux.cpp index e60677d5..2368f773 100644 --- a/libLumina/LuminaOS-Linux.cpp +++ b/libLumina/LuminaOS-Linux.cpp @@ -141,7 +141,7 @@ bool LOS::userHasShutdownAccess(){ //System Shutdown void LOS::systemShutdown(){ //start poweroff sequence - QProcess::startDetached("shutdown -h now"); + QProcess::startDetached("shutdown -P -h now"); } //System Restart |