about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-14 00:16:16 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-14 00:16:16 +0200
commitc8738748ff32b97e6080cfe8494eecd115101f53 (patch)
tree1b0dbdbf093a525e622c2fcad95bed5dd10274dc
parentFixed screenshot script notifications (diff)
downloaddmenu-c8738748ff32b97e6080cfe8494eecd115101f53.tar.gz
dmenu-c8738748ff32b97e6080cfe8494eecd115101f53.tar.bz2
dmenu-c8738748ff32b97e6080cfe8494eecd115101f53.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 48fcf5a..4b33e61 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 -h now & ;;
+  shutdown) systemctl shutdown & ;;
   reboot) systemctl reboot & ;;
 esac