aboutsummaryrefslogtreecommitdiffstats
path: root/i3/i3exit
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-11-19 15:21:44 +0000
committerYann Herklotz <git@yannherklotz.com>2022-11-19 15:21:44 +0000
commit2ece7032558cd0be673d65237a01c5e6ffe625f1 (patch)
treebc88a1eecb4f70e212bf8c2a5e3755120a05d856 /i3/i3exit
parentd9028e12d857d1fdb68b507bfa8dffbd64b7b2f7 (diff)
downloaddotfiles-2ece7032558cd0be673d65237a01c5e6ffe625f1.tar.gz
dotfiles-2ece7032558cd0be673d65237a01c5e6ffe625f1.zip
Move to a GNU Stow config
Diffstat (limited to 'i3/i3exit')
-rwxr-xr-xi3/i3exit30
1 files changed, 0 insertions, 30 deletions
diff --git a/i3/i3exit b/i3/i3exit
deleted file mode 100755
index 4292234..0000000
--- a/i3/i3exit
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-lock() {
- i3lock -c 2f2f2f
-}
-
-case "$1" in
- lock)
- lock
- ;;
- logout)
- i3-msg exit
- ;;
- suspend)
- lock && systemctl suspend
- ;;
- hibernate)
- lock && systemctl hibernate
- ;;
- reboot)
- systemctl reboot
- ;;
- shutdown)
- systemctl poweroff
- ;;
- *)
- echo "Usage: $0 {lock|logout|suspend|hibernate|reboot|shutdown}"
- exit 2
-esac
-
-exit 0