aboutsummaryrefslogtreecommitdiff
path: root/contrib/hotreload.sh
blob: afe53ba7714f911b2c50c6fa2f7137a666bc2dcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# Watch themes and plugins files, automatically reload koushin on change.

events=modify,create,delete,move
targets="themes/ plugins/"

inotifywait -e "$events" -m -r $targets | while read line; do
	jobs >/dev/null # Reap status of any terminated job
	if [ -z "$(jobs)" ]; then
		(sleep 0.5 && pkill -USR1 koushin) &
	fi
done