puntos/.config/waybar/zeit.sh

17 lines
204 B
Bash
Raw Normal View History

2023-02-16 18:05:14 +00:00
#!/bin/sh
. ~/.profile
update_zeit() {
zeit tracking --no-colors
}
update_zeit
(busybox inotifyd - "$ZEIT_DB":c | while read -r; do
update_zeit
done) &
while true; do
sleep 30
update_zeit
done