diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-11-22 00:30:58 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-11-22 00:30:58 +0100 |
commit | 27c62387431f476958c5a7ae584fefd2cc220b98 (patch) | |
tree | 07432ad75ce10ec75f797b236fb8364a854c0c3e /scripts | |
parent | daad6ac8f1238a3111a05d8b2d70f31e1a70da03 (diff) | |
download | dotfiles-27c62387431f476958c5a7ae584fefd2cc220b98.tar.gz |
fix rofi-exit
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/rofi-exit-menu.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/rofi-exit-menu.sh b/scripts/rofi-exit-menu.sh index 57ce492..e3a21b9 100755 --- a/scripts/rofi-exit-menu.sh +++ b/scripts/rofi-exit-menu.sh @@ -2,7 +2,7 @@ function options() { cat << EOF -supspend +suspend shutdown reboot Xit @@ -14,10 +14,10 @@ if [ $# -gt 0 ]; then suspend) systemctl suspend;; shutdown) - systemctl shutdown;; + systemctl poweroff;; reboot) systemctl reboot;; - "exit i3") + Xit) i3-msg exit;; *) options;; |