Guest User

Untitled

a guest
Dec 11th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #! /bin/bash
  2. # Push a message on-screen every 60 seconds to remind you of what you're supposed to be doing
  3. # requires lib-notify (most distros have it I think)
  4. while [ 1 ]; do
  5. notify-send Hey "Get back to work"
  6. sleep 60;
  7. done
Add Comment
Please, Sign In to add comment