summaryrefslogtreecommitdiff
path: root/scripts/brightness-control
diff options
context:
space:
mode:
authorryukamish <[email protected]>2026-06-03 18:17:28 +0530
committerryukamish <[email protected]>2026-06-03 18:17:28 +0530
commitf595b592637d5f9dc76b90f97bbcad200f6a0f72 (patch)
tree500be3c1cb07e635ac1fa857563b239f7b4c0d2d /scripts/brightness-control
parent9735eb5c026cc0e1b7c9f3942a22b0290d963fac (diff)
add/fix: variable addition and value changes
Diffstat (limited to 'scripts/brightness-control')
-rwxr-xr-xscripts/brightness-control4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/brightness-control b/scripts/brightness-control
index 1c6b02c..7049089 100755
--- a/scripts/brightness-control
+++ b/scripts/brightness-control
@@ -8,11 +8,11 @@ if [[ "$1" == "up" ]]; then
| awk -F ',' '{print $4+0}' \
| xargs -I[] notify-send -e -u low -h \
string:x-canonical-private-synchronous:brightness_notif -h \
- int:value:[] "☀ Brightness: []%"
+ int:value:[] "☀ Brightness []"
elif [[ "$1" == "down" ]]; then
brightnessctl set -e1 -n2 5%- -m \
| awk -F ',' '{print $4+0}' \
| xargs -I[] notify-send -e -u low -h \
string:x-canonical-private-synchronous:brightness_notif -h \
- int:value:[] "☀ Brightness: []%"
+ int:value:[] "☀ Brightness []"
fi