neodotfiles/user/.config/suckless/dwmblocks/scripts/brightness

12 lines
216 B
Text
Raw Normal View History

2022-07-20 02:46:41 +00:00
#!/usr/bin/env bash
brt=$(xbacklight -get)
if [ "$brt" = "100.000000" ]; then
icon=🔆
elif [ "$brt" \> "50%.*" ]; then
icon=🔆
elif [ "$brt" \< "49%.*" ]; then
icon=🔅
fi
echo " $icon ${brt%.*}% "