From 47863b24083d1c09c1f0ca2a52b5925f276432df Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 17 Feb 2026 17:59:03 +0100 Subject: [PATCH] Add 1.6x as option too --- bin/omarchy-toggle-monitor-scaling | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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" ;;