Files
illogical-impulse/early/.config/eww/scripts/brightness
T
2024-02-22 15:35:06 +07:00

59 lines
1.2 KiB
Bash
Executable File

#!/usr/bin/env bash
cd ~/.config/eww
icons=("" "" "")
XDG_CACHE_HOME="$HOME/.cache"
date="$XDG_CACHE_HOME/eww/osd_brightness.date"
lock=0
showhide() {
# get dates
rundate=$(cat "$date")
currentdate=$(date +%s)
# handle showing
if [ "$rundate" = "$currentdate" ] && [ "$lock" -eq 0 ]; then
scripts/toggle-osd-bright.sh --open
lock=1
elif [ $((currentdate - rundate)) -ge 2 ] && [ "$lock" -eq 1 ]; then
scripts/toggle-osd-bright.sh --close > /dev/null
lock=0
fi
}
osd() {
if [ ! -f "$date" ]; then
mkdir -p "$XDG_CACHE_HOME/eww"
fi
date +%s > "$date"
# showhide
}
osd_handler() {
lock=0
rundate=0
if [ ! -f "$date" ]; then
mkdir -p "$XDG_CACHE_HOME/eww"
echo 0 > "$date"
fi
while true; do
showhide
sleep 0.1
done
}
if [ "$1" = "osd" ]; then
osd
else
# initial
icon=${icons[$(awk -v n="$(light)" 'BEGIN{print int(n/34)}')]}
echo '{ "level": '"$(light)"', "icon": "'"$icon"'" }'
osd_handler &
udevadm monitor | rg --line-buffered "backlight" | while read -r _; do
icon="${icons[$(awk -v n="$(light)" 'BEGIN{print int(n/34)}')]}"
echo '{ "level": '"$(light)"', "icon": "'"$icon"'" }'
done
fi