tv-power-menu.sh 310 B

12345678910111213141516171819
  1. #!/usr/bin/env zsh
  2. choice="$(fuzzel --index -d <<'EOF'
  3. Enable
  4. Disable
  5. EOF
  6. )"
  7. if (( ${?} != 0 )) || (( "${choice}" == -1 )); then
  8. exit 0
  9. fi
  10. case "${choice}" in
  11. 0)
  12. wlr-randr --output DP-3 --mode 1920x1080@60 --scale 1 --on
  13. ;;
  14. 1)
  15. wlr-randr --output DP-3 --off
  16. ;;
  17. esac