From 083715c8c6adb8ba2a012eb6476bd232543277f1 Mon Sep 17 00:00:00 2001 From: Jack Blakely <66569728+jkbdco@users.noreply.github.com> Date: Sun, 28 Dec 2025 11:46:44 -0500 Subject: [PATCH] Fix omarchy-update failing outside Hyprland session (#4002) --- bin/omarchy-update-perform | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-update-perform b/bin/omarchy-update-perform index 2b6810d9..82946cfd 100755 --- a/bin/omarchy-update-perform +++ b/bin/omarchy-update-perform @@ -3,7 +3,7 @@ set -e # Ensure screensaver/sleep doesn't set in during updates -hyprctl dispatch tagwindow +noidle &> /dev/null +hyprctl dispatch tagwindow +noidle &> /dev/null || true # Perform all update steps omarchy-update-time @@ -15,4 +15,4 @@ omarchy-hook post-update omarchy-update-restart # Re-enable screensaver/sleep after updates -hyprctl dispatch tagwindow -- -noidle &> /dev/null +hyprctl dispatch tagwindow -- -noidle &> /dev/null || true