#!/bin/dash
# (C) James Budiono, 2013
# License: GPL Version 3 or later.
#
# run as per-user X daemon
#
### configuration
FLAG=/tmp/redraw-icons.$$

exec 2> /dev/null
### cleanup
trap 'cleanup; exit' INT QUIT TERM 0
cleanup() {
	rm $FLAG
}

### main
touch $FLAG
inotifyd - $FLAG:e | while read p; do
	fatdog-drive-icon-redraw-icons.sh
done
