dots/.script/dmenu-logout.sh

10 lines
202 B
Bash
Raw Permalink Normal View History

2019-10-03 19:13:57 +02:00
#!/usr/bin/env sh
ANS="$(printf "Lock\nShutdown\nReboot\nExit" | dmenu -i -p 'System')"
case "$ANS" in
Lock) i3lock -c 000000;;
Shutdown) sudo init 0;;
Reboot) sudo reboot;;
Exit) i3-msg exit
esac