removed sudo.

This commit is contained in:
CronyAkatsuki 2022-10-04 19:59:47 +02:00
parent b8c6ceea13
commit daeb39954f

View File

@ -5,6 +5,6 @@
source $HOME/.config/dmenu/config
case "$(printf "shutdown\\nreboot" | $DMENU -p "Choose your poison")" in
"shutdown") sudo poweroff ;;
"reboot") sudo reboot ;;
"shutdown") poweroff ;;
"reboot") reboot ;;
esac