dotfiles/scripts/menu/menu-power
2023-08-03 18:22:46 -06:00

11 lines
199 B
Bash
Executable file

#!/bin/sh
# Prompt for power options using dmenu
option=$(printf "Shutdown\nRestart" | menu "Power:")
case "$option" in
"Shutdown") sudo poweroff ;;
"Restart") sudo reboot ;;
*) exit 1 ;;
esac