Add 1.6x as option too

This commit is contained in:
David Heinemeier Hansson
2026-02-17 17:59:03 +01:00
parent de4d866754
commit 47863b2408
+3 -2
View File
@@ -4,9 +4,10 @@
CURRENT_SCALE=$(hyprctl monitors -j | jq -r '.[0].scale')
# Define the scaling cycle based on current scale
# Cycles through 1.00 → 2.00 → 3.13 → 1.00
# Cycles through 1.00 → 1.60 → 2.00 → 3.13 → 1.00
case "$CURRENT_SCALE" in
1.00) NEW_SCALE="2" ;;
1.00) NEW_SCALE="1.6" ;;
1.60) NEW_SCALE="2" ;;
2.00) NEW_SCALE="3.13" ;;
3.13) NEW_SCALE="1" ;;
*) NEW_SCALE="2" ;;