Skip to content

Instantly share code, notes, and snippets.

@ajoergensen
Created January 4, 2021 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajoergensen/b76e0e6f41c03a6561cfc5796e3e21c6 to your computer and use it in GitHub Desktop.
Save ajoergensen/b76e0e6f41c03a6561cfc5796e3e21c6 to your computer and use it in GitHub Desktop.
#!/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