about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-15 00:13:03 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-15 00:13:03 +0200
commit19ad685bad0110620baaf16aefed9a9f39038aba (patch)
tree261ef17a4cb2f0650b38066ae7f91ff3cebb281c
parentFixed shutdown in exit script (diff)
downloaddmenu-19ad685bad0110620baaf16aefed9a9f39038aba.tar.gz
dmenu-19ad685bad0110620baaf16aefed9a9f39038aba.tar.bz2
dmenu-19ad685bad0110620baaf16aefed9a9f39038aba.zip
Fixed shutdown in exit script
-rwxr-xr-xscripts/exit2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/exit b/scripts/exit
index 4b33e61..a657ac4 100755
--- a/scripts/exit
+++ b/scripts/exit
@@ -11,6 +11,6 @@ case "$choice" in
   logout) kill -9 -1 & ;;
   suspend) systemctl suspend & ;;
   hibernate) systemctl hibernate & ;;
-  shutdown) systemctl shutdown & ;;
+  shutdown) systemctl poweroff & ;;
   reboot) systemctl reboot & ;;
 esac