Skip to content

Instantly share code, notes, and snippets.

@rtpg
Created August 28, 2012 12:46
Show Gist options
  • Save rtpg/3497729 to your computer and use it in GitHub Desktop.
Save rtpg/3497729 to your computer and use it in GitHub Desktop.
Run this when trying to get something done
#! /bin/bash
# Push a message on-screen every 60 seconds to remind you of what you're supposed to be doing
# requires lib-notify (most distros have it I think)
while [ 1 ]; do
notify-send Hey "Get back to work"
sleep 60;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment