Skip to content

Instantly share code, notes, and snippets.

@davidsth
Created August 16, 2013 14:47
Show Gist options
  • Save davidsth/6250556 to your computer and use it in GitHub Desktop.
Save davidsth/6250556 to your computer and use it in GitHub Desktop.
tells you to get up and move every 30m(default) to stay healthy.
#!/bin/sh
#
# http://vimeo.com/71441709
if [ -n "$1" ]; then
snooze="$1";
else
snooze="30m"
fi
while [ 1 ]; do
sleep $snooze;
notify-send "Get up and move!";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment