]> git.phdru.name Git - xsetbg.git/commitdiff
Moved pinger from ~/.xinitrc to a separate shell script.
authorOleg Broytman <phd@phdru.name>
Sun, 7 Feb 2010 12:23:22 +0000 (12:23 +0000)
committerOleg Broytman <phd@phdru.name>
Sun, 7 Feb 2010 12:23:22 +0000 (12:23 +0000)
git-svn-id: file:///home/phd/archive/SVN/xsetbg/trunk@36 143022c7-580b-0410-bae3-87f2bf5d3141

pinger-start [new file with mode: 0755]

diff --git a/pinger-start b/pinger-start
new file mode 100755 (executable)
index 0000000..fc6e7e4
--- /dev/null
@@ -0,0 +1,8 @@
+#! /bin/sh
+
+# Pinger - ping xsetbg.py every minute
+(cd "$HOME/lib/xsetbg" && \
+while true; do
+   sleep 60
+   ./xsetbg-ping
+done) &