mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-05 07:05:40 +01:00
10 lines
No EOL
279 B
Bash
Executable file
10 lines
No EOL
279 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
respond="$(echo "---------------- Yes ----------------\n---------------- Nah ----------------" | wofi --show dmenu)"
|
|
if [ $respond = '---------------- Yes ----------------' ]
|
|
then
|
|
echo "shutdown"
|
|
shutdown now
|
|
else
|
|
notify-send "cancel shutdown"
|
|
fi |