neodotfiles/user/.config/awesome/ui/custom-widgets/brightness
2022-12-04 21:49:49 -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%.*}%"