Skip to content

Instantly share code, notes, and snippets.

@tiagojsag
Created December 24, 2015 11:19
Show Gist options
  • Save tiagojsag/a4bd04716842cf5609cf to your computer and use it in GitHub Desktop.
Save tiagojsag/a4bd04716842cf5609cf to your computer and use it in GitHub Desktop.
i3exit
#!/bin/sh
lock() {
i3lock
}
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment