Suppress brightness OSD from display panel

This commit is contained in:
David Heinemeier Hansson
2026-05-22 11:35:36 +02:00
parent 7b6a03fa08
commit c522757acf
4 changed files with 52 additions and 10 deletions
+21 -4
View File
@@ -1,8 +1,21 @@
#!/bin/bash
# omarchy:summary=Show or adjust brightness on the most likely display device.
# omarchy:args=[+N%|N%-|N%|off|on]
# omarchy:examples=omarchy brightness display | omarchy brightness display +5% | omarchy brightness display 5%- | omarchy brightness display 50% | omarchy brightness display off | omarchy brightness display on
# omarchy:args=[--no-osd] [+N%|N%-|N%|off|on]
# omarchy:examples=omarchy brightness display | omarchy brightness display +5% | omarchy brightness display --no-osd 50% | omarchy brightness display off | omarchy brightness display on
no_osd=0
args=()
for arg in "$@"; do
if [[ $arg == "--no-osd" ]]; then
no_osd=1
else
args+=("$arg")
fi
done
set -- "${args[@]}"
# Get the brightness of the passed display
display_brightness() {
@@ -36,7 +49,11 @@ exec {lock_fd}>"${XDG_RUNTIME_DIR:-/tmp}/omarchy-brightness-display.lock"
flock -n "$lock_fd" || exit 0
if omarchy-hyprland-monitor-focused-apple; then
omarchy-brightness-display-apple "$step"
if (( no_osd )); then
omarchy-brightness-display-apple --no-osd "$step"
else
omarchy-brightness-display-apple "$step"
fi
exit
fi
@@ -72,4 +89,4 @@ fi
brightnessctl -d "$device" set "$step" >/dev/null
# Show the new brightness in OSD
omarchy-osd -i brightness -p "$(display_brightness "$device")"
(( no_osd )) || omarchy-osd -i brightness -p "$(display_brightness "$device")"