aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/i3exit
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2019-11-07 12:39:12 +0000
committerYann Herklotz <git@yannherklotz.com>2019-11-07 12:39:12 +0000
commit3fed8bf7b2915d2d00b830f5103a4962a29be4c7 (patch)
tree41e64a9f70fcaa57bf55d95a9928edbd2c57c186 /scripts/i3exit
parentacedbb6a814796ee5b7e8f4e355b1757443dae22 (diff)
downloaddotfiles-3fed8bf7b2915d2d00b830f5103a4962a29be4c7.tar.gz
dotfiles-3fed8bf7b2915d2d00b830f5103a4962a29be4c7.zip
Add scripts and services
Diffstat (limited to 'scripts/i3exit')
-rwxr-xr-xscripts/i3exit30
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/i3exit b/scripts/i3exit
new file mode 100755
index 0000000..bea4549
--- /dev/null
+++ b/scripts/i3exit
@@ -0,0 +1,30 @@
+#!/bin/sh
+lock() {
+ /home/yannherklotz/.local/bin/betterlock -$1 blur
+}
+
+case "$1" in
+ lock)
+ lock l
+ ;;
+ logout)
+ i3-msg exit
+ ;;
+ suspend)
+ lock s
+ ;;
+ hibernate)
+ lock && systemctl hibernate
+ ;;
+ reboot)
+ systemctl reboot
+ ;;
+ shutdown)
+ systemctl poweroff
+ ;;
+ *)
+ echo "Usage: $0 {lock|logout|suspend|hibernate|reboot|shutdown}"
+ exit 2
+esac
+
+exit 0