Upload New File

This commit is contained in:
RealStickman 2020-03-04 12:28:42 +00:00
parent 991d9f0dfa
commit 97c806b610

View File

@ -0,0 +1,28 @@
#!/bin/sh
case "$1" in
lock)
slimlock
;;
logout)
i3-msg exit
;;
suspend)
systemctl suspend
;;
hibernate)
systemctl hibernate
;;
reboot)
systemctl reboot
;;
shutdown)
systemctl poweroff
;;
*)
echo "Usage: $0 {lock|logout|suspend|hibernate|reboot|shutdown}"
exit 2
esac
exit 0