neodotfiles/user/.config/suckless/dwmblocks/scripts/brightness
2022-07-19 22:46:41 -04:00

11 lines
216 B
Bash
Executable file

#!/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%.*}% "