From 9878b5b791d5aea0a3d09da4fc702012c0c1e9ea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 17 May 2026 19:52:11 +0200 Subject: [PATCH] Don't use notifications for toggles that have clear visual feedback already --- bin/omarchy-toggle-nightlight | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/omarchy-toggle-nightlight b/bin/omarchy-toggle-nightlight index 5d52b1b6..52ecfa19 100755 --- a/bin/omarchy-toggle-nightlight +++ b/bin/omarchy-toggle-nightlight @@ -17,8 +17,6 @@ CURRENT_TEMP=$(hyprctl hyprsunset temperature 2>/dev/null | grep -oE '[0-9]+') if [[ $CURRENT_TEMP == $OFF_TEMP ]]; then hyprctl hyprsunset temperature $ON_TEMP - omarchy-notification-send -g  "Nightlight screen temperature" else hyprctl hyprsunset temperature $OFF_TEMP - omarchy-notification-send -g  "Daylight screen temperature" fi