From c266a4d7f4a25172f791006fbf31cc81fc8072ce Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 19 Feb 2026 20:50:39 +0100 Subject: [PATCH 1/2] Correct offset to icon --- bin/omarchy-toggle-monitor-scaling | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-toggle-monitor-scaling b/bin/omarchy-toggle-monitor-scaling index aa028a94..00509752 100755 --- a/bin/omarchy-toggle-monitor-scaling +++ b/bin/omarchy-toggle-monitor-scaling @@ -18,4 +18,4 @@ esac hyprctl keyword misc:disable_scale_notification true hyprctl keyword monitor "$ACTIVE_MONITOR,preferred,auto,$NEW_SCALE" hyprctl keyword misc:disable_scale_notification false -notify-send "󰍹 Display scaling set to ${NEW_SCALE}x" +notify-send "󰍹 Display scaling set to ${NEW_SCALE}x" From ae8b9b748b7d6e220e8a58975792d02352a1a031 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 19 Feb 2026 21:03:55 +0100 Subject: [PATCH 2/2] Have to start it right away --- bin/omarchy-toggle-hybrid-gpu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-toggle-hybrid-gpu b/bin/omarchy-toggle-hybrid-gpu index 2667933a..3c36edff 100755 --- a/bin/omarchy-toggle-hybrid-gpu +++ b/bin/omarchy-toggle-hybrid-gpu @@ -6,7 +6,7 @@ # Ensure supergfxctl has been installed if omarchy-cmd-missing supergfxctl; then omarchy-pkg-add supergfxctl - sudo systemctl enable supergfxd + sudo systemctl enable --now supergfxd # Needed to deal with restoring to sleep where going through VFIO first means we don't need to reboot. sudo sed -i "s/\"vfio_enable\": \".*\"/\"vfio_enable\": true/" /etc/supergfxd.conf @@ -36,7 +36,7 @@ case "$gpu_mode" in # Force igpu mode after system sleep (or dgpu could get activated) sudo mkdir -p /usr/lib/systemd/system-sleep - sudo cp -p $OMARCHY_PATH/default/systemd/system-sleep/force-igpu /usr/lib/systemd/system-sleep/ + sudo cp -p $OMARCHY_PATH/default/systemd/system-sleep/force-igpu /usr/lib/systemd/system-sleep/ # Delay supergfxd startup to avoid race condition with display manager # that can cause system freeze when booting in Integrated mode