Add tv-power-menu.sh

This commit is contained in:
2023-12-20 20:21:40 -08:00
parent 9388509fe9
commit f1d995d119
2 changed files with 19 additions and 0 deletions

18
system-menu/tv-power-menu.sh Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env zsh
choice="$(fuzzel --index -d <<'EOF'
Enable
Disable
EOF
)"
if (( ${?} != 0 )) || (( "${choice}" == -1 )); then
exit 0
fi
case "${choice}" in
0)
hyprctl keyword monitor 'DP-1,1920x1080@60,auto,1'
;;
1)
hyprctl keyword monitor 'DP-1,disable'
;;
esac