Skip to content

Instantly share code, notes, and snippets.

@zerosign
Created April 3, 2014 04:28
Show Gist options
  • Save zerosign/9948281 to your computer and use it in GitHub Desktop.
Save zerosign/9948281 to your computer and use it in GitHub Desktop.
#!/bin/sh
lock() {
i3lock
}
case "$1" in
lock)
lock
;;
logout)
i3-msg exit
;;
suspend)
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