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