dotfiles/i3/.i3/scripts/i3exit

30 lines
478 B
Plaintext
Raw Normal View History

2018-02-09 14:18:35 +01:00
#!/bin/sh
lock() {
~/.config/i3/i3lock/lock --no-text
}
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