From: Oleg Broytman Date: Sun, 7 Feb 2010 12:23:22 +0000 (+0000) Subject: Moved pinger from ~/.xinitrc to a separate shell script. X-Git-Tag: v4.0.0~32 X-Git-Url: https://git.phdru.name/?p=xsetbg.git;a=commitdiff_plain;h=f23ef0b931066b836b695d200b564cf8436995a5 Moved pinger from ~/.xinitrc to a separate shell script. git-svn-id: file:///home/phd/archive/SVN/xsetbg/trunk@36 143022c7-580b-0410-bae3-87f2bf5d3141 --- diff --git a/pinger-start b/pinger-start new file mode 100755 index 0000000..fc6e7e4 --- /dev/null +++ b/pinger-start @@ -0,0 +1,8 @@ +#! /bin/sh + +# Pinger - ping xsetbg.py every minute +(cd "$HOME/lib/xsetbg" && \ +while true; do + sleep 60 + ./xsetbg-ping +done) &