Make the brightness a little bit prettier
This commit is contained in:
@@ -43,7 +43,6 @@ interval=1
|
||||
signal=10
|
||||
|
||||
[brightness]
|
||||
label=
|
||||
command=$HOME/.config/i3/scripts/brightness.sh
|
||||
interval=1
|
||||
|
||||
|
||||
@@ -11,4 +11,14 @@ case $BLOCK_BUTTON in
|
||||
5) xbacklight -dec 10 ;;
|
||||
esac
|
||||
|
||||
printf "%.0f" "$(xbacklight -get)"
|
||||
percentage=$(printf "%.0f" "$(xbacklight)")
|
||||
|
||||
if (( $percentage >= 75 )); then
|
||||
icon=""
|
||||
elif (( $percentage >= 25 )); then
|
||||
icon=""
|
||||
else
|
||||
icon=""
|
||||
fi
|
||||
|
||||
echo $icon $percentage%
|
||||
|
||||
Reference in New Issue
Block a user