Created
August 28, 2012 12:46
-
-
Save rtpg/3497729 to your computer and use it in GitHub Desktop.
Run this when trying to get something done
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 | |
# 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