Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # For crontab: 0 23 * * * $0
  4.  
  5. sudo -u jonathan bash -c '
  6.  
  7. printdate() {
  8.  date "+%R"
  9. } # prints the time
  10.  
  11. for i in {30,15,15,15,14}       # 23:00, 23:30, 23:45, 00:00, 00:15
  12. do 
  13.  zenity --info --title="GO TO BED!" --text="Go to bed NOW!!!! Time: $(printdate)" &
  14.  sleep $i\m
  15. done
  16.  
  17. zenity --info --title="SHUTTING DOWN" --text="BYE! SHUTTING DOWN IN 1 MIN!" &
  18. # 00:29 '
  19.  
  20. #sleep 1m
  21. #shutdown 0         # 00:30 - SHUTTING DOWN!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement