From f43972d665c95b2148636c86a5b648e719901101 Mon Sep 17 00:00:00 2001 From: B Stack Date: Sun, 12 May 2019 16:34:13 -0400 Subject: 10.12 --- zen/shutdown.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zen/shutdown.cpp') diff --git a/zen/shutdown.cpp b/zen/shutdown.cpp index aecd4121..4fc687d6 100644 --- a/zen/shutdown.cpp +++ b/zen/shutdown.cpp @@ -18,7 +18,7 @@ void zen::shutdownSystem() //throw FileError //https://linux.die.net/man/2/reboot => needs admin rights! //"systemctl" should work without admin rights: - shellExecute("systemctl poweroff", ExecutionType::SYNC); //throw FileError + shellExecute("systemctl poweroff", ExecutionType::SYNC, false/*hideConsole*/); //throw FileError } @@ -26,7 +26,7 @@ void zen::shutdownSystem() //throw FileError void zen::suspendSystem() //throw FileError { //"systemctl" should work without admin rights: - shellExecute("systemctl suspend", ExecutionType::SYNC); //throw FileError + shellExecute("systemctl suspend", ExecutionType::SYNC, false/*hideConsole*/); //throw FileError } -- cgit