aboutsummaryrefslogtreecommitdiff
path: root/xbrightness
diff options
context:
space:
mode:
Diffstat (limited to 'xbrightness')
-rwxr-xr-xxbrightness5
1 files changed, 4 insertions, 1 deletions
diff --git a/xbrightness b/xbrightness
index f86f72f..6b5f83f 100755
--- a/xbrightness
+++ b/xbrightness
@@ -202,8 +202,11 @@ elif $mth_xrandr
then
displays=$(xrandr -q | grep " connected" | sed -e 's| .*||')
+ # Apply brightness configuration for each available display
for display in $displays; do
- xrandr --output "$display" --brightness "$val_new"
+ echo "Setting brightness to $val_new at $display..."
+ # Use "|| true" to not exit on any errors at this stage
+ xrandr --output "$display" --brightness "$val_new" || true
done
else
>&2 echo "No low-level-method chosen!"