random-scripts/system-menu/system-power-menu.sh

18 lines
198 B
Bash
Raw Permalink Normal View History

2023-10-30 23:27:58 -07:00
#!/usr/bin/env zsh
choice="$(fuzzel --index -d <<'EOF'
Shutdown
Restart
EOF
)"
(( ${?} != 0 )) && exit
case "${choice}" in
0)
poweroff
;;
1)
2023-11-16 03:07:50 -08:00
reboot
2023-10-30 23:27:58 -07:00
;;
esac