Changeset 89b0616 in flowtimer
- Timestamp:
- 08/29/24 19:21:35 (9 months ago)
- Branches:
- guix
- Children:
- 794b5c2
- Parents:
- 43d78ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
README.md
r43d78ee r89b0616 112 112 ``` 113 113 114 This configuration represents a standard Pomodoro cycle: three work sessions of 25 minutes each, separated by 5-minute short breaks, and followed by a 15-minute long break. 114 This configuration represents a standard schedule named 'default': 115 116 It starts with a 15 min (900s) morning huddle, followed by a sequence 'AM' consisting of 'Tasking', 'Working', 'Syncing', that is repeated twice. 117 118 After a 45 min lunch break, another sequence 'PM' follows, that is repeated twice as well. 119 120 Color schemes can be configured as follows. Use the phase title as title for each color scheme to match them. 121 122 123 ```json 124 { 125 "color_schemes": [ 126 { 127 "title": "Completed", 128 "widget": "red", 129 "sequence_label": "red", 130 "center_frame": "red" 131 }, 132 { 133 "title": "Huddle", 134 "widget": "blue", 135 "sequence_label": "red", 136 "center_frame": "yellow" 137 }, 138 { 139 "title": "Tasking", 140 "widget": "red", 141 "sequence_label": "yellow", 142 "center_frame": "blue" 143 }, 144 { 145 "title": "Work", 146 "widget": "yellow", 147 "sequence_label": "blue", 148 "center_frame": "red" 149 }, 150 { 151 "title": "Break", 152 "widget": "green", 153 "sequence_label": "brown", 154 "center_frame": "white" 155 }, 156 { 157 "title": "Start", 158 "widget": "white", 159 "sequence_label": "green", 160 "center_frame": "brown" 161 }, 162 { 163 "title": "Default", 164 "widget": "pink", 165 "sequence_label": "orange", 166 "center_frame": "violet" 167 } 168 ] 169 } 170 ``` 115 171 116 172 2. **Run Flowtimer:** … … 128 184 129 185 - `--config <file>`: Specify a custom JSON configuration file. 130 - `-- start`: Start the Pomodoro timer with the current configuration.131 186 - `--colors`: Specify a JSON color scheme configuration file. 187 - `--start`: Autostart the timer with the current configuration. 132 188 ### Example 133 189 134 190 ```bash 135 python3 flowtimer.py --config my config.json191 python3 flowtimer.py --config myschedule.json --colors mycolorscheme.json 136 192 ``` 137 193 138 This command will start Flowtimer with a custom configuration provided in `my config.json`.194 This command will start Flowtimer with a custom configuration provided in `myschedule.json` using color scheme from mycolorscheme.json. 139 195 140 196 ## Contributing
Note:
See TracChangeset
for help on using the changeset viewer.