Skip to content

Instantly share code, notes, and snippets.

@ajoergensen
Created January 4, 2021 15:51
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/6cf903750968444c8daeccc221bf2edd to your computer and use it in GitHub Desktop.
Save ajoergensen/6cf903750968444c8daeccc221bf2edd to your computer and use it in GitHub Desktop.
#!/bin/bash
wait=0
while true
do
$HOME/bin/irssi-notify-client.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