2023-12-20 20:21:40 -08:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
|
|
choice="$(fuzzel --index -d <<'EOF'
|
|
|
|
Enable
|
|
|
|
Disable
|
|
|
|
EOF
|
|
|
|
)"
|
|
|
|
if (( ${?} != 0 )) || (( "${choice}" == -1 )); then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
case "${choice}" in
|
|
|
|
0)
|
2023-12-25 19:47:38 -08:00
|
|
|
hyprctl keyword monitor 'DP-3,1920x1080@60,auto,1'
|
2023-12-20 20:21:40 -08:00
|
|
|
;;
|
|
|
|
1)
|
2023-12-25 19:47:38 -08:00
|
|
|
hyprctl keyword monitor 'DP-3,disable'
|
2023-12-20 20:21:40 -08:00
|
|
|
;;
|
|
|
|
esac
|