diff options
| author | Manuel Palenzuela <[email protected]> | 2019-06-15 00:13:03 +0200 |
|---|---|---|
| committer | Manuel Palenzuela <[email protected]> | 2019-06-15 00:13:03 +0200 |
| commit | 19ad685bad0110620baaf16aefed9a9f39038aba (patch) | |
| tree | 261ef17a4cb2f0650b38066ae7f91ff3cebb281c /scripts | |
| parent | Fixed shutdown in exit script (diff) | |
| download | dmenu-19ad685bad0110620baaf16aefed9a9f39038aba.tar.gz dmenu-19ad685bad0110620baaf16aefed9a9f39038aba.tar.bz2 dmenu-19ad685bad0110620baaf16aefed9a9f39038aba.zip | |
Fixed shutdown in exit script
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/exit | 2 |
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 |