From 20aa4bf2054bad9d215213be85453cf88a09cdb0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 17 May 2026 20:05:58 +0200 Subject: [PATCH] Don't need fallback for earlier versions --- bin/omarchy-brightness-display | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-brightness-display b/bin/omarchy-brightness-display index 0fa89d9d..9a974000 100755 --- a/bin/omarchy-brightness-display +++ b/bin/omarchy-brightness-display @@ -7,10 +7,10 @@ step="${1:-+5%}" if [[ $step == "off" ]]; then - hyprctl dispatch 'hl.dsp.dpms({ action = "disable" })' >/dev/null 2>&1 || hyprctl dispatch dpms off >/dev/null 2>&1 + hyprctl dispatch 'hl.dsp.dpms({ action = "disable" })' >/dev/null 2>&1 exit 0 elif [[ $step == "on" ]]; then - hyprctl dispatch 'hl.dsp.dpms({ action = "enable" })' >/dev/null 2>&1 || hyprctl dispatch dpms on >/dev/null 2>&1 + hyprctl dispatch 'hl.dsp.dpms({ action = "enable" })' >/dev/null 2>&1 exit 0 fi