-
-
Save ajoergensen/b76e0e6f41c03a6561cfc5796e3e21c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wait=0 | |
while true | |
do | |
$HOME/bin/irssi-notify-client-minivan.pl | |
let wait=$wait+5 | |
if [ $wait -ge 30 ] | |
then | |
sleep 30 | |
else | |
sleep $wait | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment