system-power-menu.sh 198 B

123456789101112131415161718
  1. #!/usr/bin/env zsh
  2. choice="$(fuzzel --index -d <<'EOF'
  3. Shutdown
  4. Restart
  5. EOF
  6. )"
  7. (( ${?} != 0 )) && exit
  8. case "${choice}" in
  9. 0)
  10. poweroff
  11. ;;
  12. 1)
  13. reboot
  14. ;;
  15. esac