neodotfiles/user/.config/awesome/ui/widgets/brightness
2022-12-06 01:40:36 -04:00

10 lines
208 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%.*}%"