aboutsummaryrefslogtreecommitdiff
path: root/.scripts/pomo
blob: b10b49b7cf45c09bb3e7fc44203be10c9e65e8d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/bin/bash

### Send desktop notifications
## Params: header {String} - Notification highlighted text
## Params: body {String} - Notification complementary text
## Returns: {Void}
function notify() {
  header=$1
  body=$2
  notify-send -u critical -t 0 -a pomo "${header:?}" "${body:?}"
}

### Show a countdown timer and a message and updates without
### cleaning the whole screen
## Params: seconds {Number} - Countdown time in seconds 
## Params: message {String} - Timer description
## Returns: {String} - "hh:mm:ss - $message"
function countdown(){
  secs=$1
  shift
  message=$*
  while [ $secs -gt -1 ]
  do
    sleep 1 &
    printf "\r%s - %02d:%02d:%02d" "$message" $((secs/3600)) $(((secs/60)%60)) $((secs%60))
    secs=$(( $secs - 1 ))
    wait
  done
  echo
}

### Transforms minutes into seconds
## Params: minutes {Number} - Ammount of minutes to be transformed to seconds
## Returns: {Number} - Seconds
function minutes_to_seconds() {
  minutes=$1 
  echo $(($minutes * 60))
}

### Add minutes to current time
## Params: minutes {Number} - Ammounts of minutes to be added
## Returns: {Date} - Current date plus minutes
function current_time_plus_minutes() {
  minutes=$1
  date -d "$minutes minutes" +'%H:%M'
}

### Display a summary of the settings defined by the user
## Params: focus_minutes {Number} - Ammount of minutes to last a focus period
## Params: break_minutes {Number} - Ammount of minutes to last a break period
## Params: long_break_minutes {Number} - Ammount of minutes to last a long break period
## Params: breaks_until_long {Number} - Ammount of breaks until a long break period starts
## Returns: {String} - Formatted summary of the settings
function display_summary() {
    focus_minutes=$1
    break_minutes=$2
    long_break_minutes=$3
    breaks_until_long=$4

    echo "╔════════════════╦════════╗"
    echo "║ FOCUS          ║   $(printf "%03d\n" $focus_minutes)  ║"
    echo "║ BREAK          ║   $(printf "%03d\n" $break_minutes)  ║"
    echo "║ LONG BREAK     ║   $(printf "%03d\n" $long_break_minutes)  ║"
    echo "║ BREAKS TL LONG ║   $(printf "%03d\n" $breaks_until_long)  ║"
    echo "╚════════════════╩════════╝"
}

### Display a help message
## Returns: {String} - Formatted help message with all available settings and options
function display_help() {
  echo "Usage: `basename $0` [options] [focus] [break] [long_break] [breaks_until_long]"
  echo "    options            -h: display help message"
  echo "    focus              Minutes of focus until break      | Default = 25"
  echo "    break              Minutes of break until focus      | Default = 5"
  echo "    long_break         Minutes of long break until focus | Default = 15"
  echo "    breaks_until_long  Number of breaks until long break | Default = 4"
}

### Controls the application flow, parse arguments, show the countdown and notifications
## Params: focus_minutes {Number} - Ammount of minutes to last a focus period
## Params: break_minutes {Number} - Ammount of minutes to last a break period
## Params: long_break_minutes {Number} - Ammount of minutes to last a long break period
## Params: breaks_until_long {Number} - Ammount of breaks until a long break period starts
## Returns: {Void}
function main() {
    focus_minutes=${1-25} # default = 25
    break_minutes=${2-5} # default = 5
    long_break_minutes=${3-15} # default = 15
    breaks_until_long=${4-4} # default = 4

    focus_seconds=$(minutes_to_seconds $focus_minutes)
    break_seconds=$(minutes_to_seconds $break_minutes)
    long_break_seconds=$(minutes_to_seconds $long_break_minutes)


    display_summary $focus_minutes $break_minutes $long_break_minutes $breaks_until_long


    while true; do
      for (( i=1; i<=$breaks_until_long; i++ )); do
	countdown "$focus_seconds" "FOCUS TIME" 
	notify "BREAK: $break_minutes MINUTES" "Focus time at $(current_time_plus_minutes $break_minutes)"

	if [ $(($i)) -ne $breaks_until_long ]; then
	  countdown $break_seconds "BREAK TIME"
	  notify "FOCUS: $focus_minutes MINUTES" "Break time at $(current_time_plus_minutes $focus_minutes)"
	else
	  notify "LONG BREAK: $long_break_minutes MINUTES" "Focus time at $(current_time_plus_minutes $long_break_minutes)"
	fi
      done
	countdown $long_break_seconds "LONG BREAK TIME"
	notify "FOCUS: $focus_minutes MINUTES" "Break time at $(current_time_plus_minutes $focus_minutes)"
    done
}

## Help message
if [ "$1" == "-h" ]; then
  display_help
  exit 0
fi

main $1 $2 $3 $4