This is a collection of dotfiles and scripts for my bspwm setup
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
# Right click, scroll up, scroll down
|
|
|
|
|
R="A3:brightnessctl -q s 30%; $0:"
|
|
|
|
|
U="A4:brightnessctl -q s +10%; $0:"
|
|
|
|
|
D="A5:brightnessctl -q s 10%-; $0:"
|
|
|
|
|
|
|
|
|
|
PERCENTAGE=$(brightnessctl \
|
|
|
|
|
| awk '/\([0-9]+%\)/ { print substr($4, 2, length($4) - 3) }')
|
|
|
|
|
if [ "$PERCENTAGE" -ge "75" ]; then
|
|
|
|
|
ICON="" # f111
|
|
|
|
|
elif [ "$PERCENTAGE" -ge "25" ]; then
|
|
|
|
|
ICON="" # f042
|
|
|
|
|
else
|
|
|
|
|
ICON="" # f1ce
|
|
|
|
|
# ICON="" # f111
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
INPUT="%{$R}%{$U}%{$D}"
|
|
|
|
|
END="%{A}%{A}%{A}"
|
|
|
|
|
PIPE="$($(dirname $0)/lemonbar.sh getpipe)"
|
|
|
|
|
|
|
|
|
|
printf "%s\n" "brightness$INPUT$ICON $PERCENTAGE%$END" > "$PIPE" &
|