diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-14 00:16:16 +0200 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-14 00:16:16 +0200 |
commit | c8738748ff32b97e6080cfe8494eecd115101f53 (patch) | |
tree | 1b0dbdbf093a525e622c2fcad95bed5dd10274dc | |
parent | Fixed screenshot script notifications (diff) | |
download | dmenu-c8738748ff32b97e6080cfe8494eecd115101f53.tar.gz dmenu-c8738748ff32b97e6080cfe8494eecd115101f53.tar.bz2 dmenu-c8738748ff32b97e6080cfe8494eecd115101f53.zip |
Fixed shutdown in exit script
-rwxr-xr-x | scripts/exit | 2 |
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 |