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

11 lines
213 B
Text
Raw Normal View History

2023-05-26 06:32:03 +00:00
#!/bin/bash
2022-12-20 00:15:21 +00:00
brt=$(xbacklight -get)
2023-05-26 06:32:03 +00:00
if [ "$brt" = "100.000000" ]; then
icon="󰃠"
elif [ "$brt" \> "50%.*" ]; then
icon="󰃟"
elif [ "$brt" \< "49%.*" ]; then
icon="󰃞"
fi
echo " $icon ${brt%.*}% "