diff options
author | Amin Bandali <me@aminb.org> | 2015-05-08 17:39:27 -0400 |
---|---|---|
committer | Amin Bandali <me@aminb.org> | 2015-05-08 17:39:27 -0400 |
commit | 2fc050960655b559030453c4bc53e19dc7ef3769 (patch) | |
tree | 252dbb4b755ac36a4279629441cf922e63125ead /i3/.local/bin/i3exit | |
parent | 046a6071e3609dfc2bcb2348eea505df4a54c591 (diff) | |
download | configs-2fc050960655b559030453c4bc53e19dc7ef3769.tar.gz configs-2fc050960655b559030453c4bc53e19dc7ef3769.tar.xz configs-2fc050960655b559030453c4bc53e19dc7ef3769.zip |
cleanup
delete dunst,i3{,status},pulseaudio-ctl configs
Diffstat (limited to 'i3/.local/bin/i3exit')
-rwxr-xr-x | i3/.local/bin/i3exit | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/i3/.local/bin/i3exit b/i3/.local/bin/i3exit deleted file mode 100755 index 047edbf..0000000 --- a/i3/.local/bin/i3exit +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -lock() { - i3lock-wrapper && sleep 1 -} - -case "$1" in - lock) - lock - ;; - logout) - i3-msg exit - ;; - reboot) - systemctl reboot - ;; - shutdown) - systemctl poweroff - ;; - *) - echo "Usage: $0 {lock|logout|reboot|shutdown}" - exit 2 -esac - -exit 0 |