Skip to content

Instantly share code, notes, and snippets.

@fredj
Created December 10, 2018 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredj/0f6bafa8eea2793f90ba21d26e1e366a to your computer and use it in GitHub Desktop.
Save fredj/0f6bafa8eea2793f90ba21d26e1e366a 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 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