summaryrefslogtreecommitdiff
path: root/.config/eww/scripts/timer-listener
blob: c604295a0f0e9659436f7a466a60da78396e9835 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

cd "${0%/*}"

while :
do
	while read line <../data/timer.pipe
	do
		if [ "$line" = "" ]
		then
			echo
		else
			printf '  %s\n' "$line"
		fi
	done
done