kellex

PomodoroTimeMGMT.sh

Jan 19th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 KB | None | 0 0
  1. #!/bin/bash
  2. # POMODORO
  3. # ;25 min descanso 5, 4 veces, descanso de 4 son 30 min
  4. # (+(* (+ 25 5) 4)30)
  5.  
  6. #start pomodoro
  7.  
  8. #1
  9. notify-send "25 min work"
  10. sleep 25m
  11. play -q -n synth 0.5 sin 880
  12. notify-send "5 min rest"
  13. sleep 5m
  14. play -q -n synth 0.5 sin 440
  15.  
  16. #2
  17. notify-send "25 min work"
  18. sleep 25m
  19. play -q -n synth 0.5 sin 880
  20. notify-send "5 min rest"
  21. sleep 5m
  22. play -q -n synth 0.5 sin 440
  23.  
  24. #3
  25. notify-send "25 min work"
  26. sleep 25m
  27. play -q -n synth 0.5 sin 880
  28. notify-send "5 min rest"
  29. sleep 5m
  30. play -q -n synth 0.5 sin 440
  31.  
  32. #4
  33. notify-send "25 min work"
  34. sleep 25m
  35. play -q -n synth 0.5 sin 880
  36. notify-send "25 min rest"
  37. sleep 25m
  38. play -q -n synth 0.5 sin 440
Advertisement
Add Comment
Please, Sign In to add comment