dotfiles/.config/bin/shutdown.sh

13 lines
145 B
Bash
Executable File

#!/bin/sh
choice=`printf 'cancel\nshutdown' | wofi -dk /dev/null`
case $choice in
'cancel')
exit
;;
'shutdown')
shutdown now
;;
esac