Files
dotfiles/dmenu/logout.sh
pbentes eaa22765df fixed
2025-05-05 17:21:48 +01:00

33 lines
553 B
Bash

#!/usr/bin/env bash
args = "'$*' "
lines="-l 2"
first_prompt=""
opt1="Restart\nShutdown"
opt2="Yes\nNo"
ask() {
answer="$( echo -e $1 | dmenu -i -p "$2" $lines $args )"
}
ask "$opt1" "$first_prompt"
case $answer in
"Restart")
ask "$opt2" "Are you sure?"
if [[ $answer == "Yes" ]]; then
systemctl reboot
fi
exit 0
;;
"Shutdown")
ask "$opt2" "Are you sure?"
if [[ $answer == "Yes" ]]; then
systemctl poweroff
fi
exit 0
;;
esac
exit 0