add brightness script

This commit is contained in:
frosty 2024-09-10 01:05:50 +00:00
parent 62fae924ef
commit e8a133f89b

15
.local/bin/sys-brightness Executable file
View file

@ -0,0 +1,15 @@
#!/bin/sh
set -eu
NOTIFY_ID=9990
amount=$1
device=$2
name=$3
brightness=$(brightnessctl -md "$device" s "$amount")
brightness=${brightness#*,*,*,}
brightness=${brightness%\%,*}
notify-send -u low -r "$NOTIFY_ID" -h int:value:"$brightness" "$name Brightness"