neodotfiles/user/.config/suckless/dwmblocks/scripts/block_brightness
2023-05-26 02:32:03 -04:00

10 lines
213 B
Bash
Executable file

#!/bin/bash
brt=$(xbacklight -get)
if [ "$brt" = "100.000000" ]; then
icon="󰃠"
elif [ "$brt" \> "50%.*" ]; then
icon="󰃟"
elif [ "$brt" \< "49%.*" ]; then
icon="󰃞"
fi
echo " $icon ${brt%.*}% "