diff --git a/bin/omarchy-toggle-monitor-scaling b/bin/omarchy-toggle-monitor-scaling index a6cc7bc4..ee2d8659 100755 --- a/bin/omarchy-toggle-monitor-scaling +++ b/bin/omarchy-toggle-monitor-scaling @@ -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" ;;