mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
15 lines
430 B
Bash
Executable file
15 lines
430 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
respond="$(echo "------------- Shutdown --------------\n------------- Restart ---------------\n-------------- Cancel ---------------" | wofi --show dmenu -k /dev/null)"
|
|
|
|
if [ $respond = '------------- Shutdown --------------' ]
|
|
then
|
|
echo "shutdown"
|
|
shutdown now
|
|
elif [ $respond = '------------- Restart ---------------' ]
|
|
then
|
|
echo "restart"
|
|
reboot
|
|
else
|
|
notify-send "cancel shutdown"
|
|
fi
|