- Timestamp:
- 08/29/24 15:21:23 (9 months ago)
- Branches:
- guix
- Children:
- 80996d0
- Parents:
- 7a52e57
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
README.md
r7a52e57 rc251a80 18 18 - Python 3.x 19 19 20 ### Test without install 21 ```bash 22 git clone --branch guix https://gitlab.kid.local:/legacy/flowtimer.git 23 cd flowtimer 24 25 guix shell python python:tk python-pillow -- 26 export PYTHONPATH=$PYTHONPATH:./ 27 python3 flowtimer/main.py 28 ``` 29 20 30 ### Installation 21 31 22 32 1. Clone the repository: 23 33 ```bash 24 git clone --branch guix https://gitlab.kid.local:/legacy/flowtimer.git25 34 git clone --branch guix https://gitlab.kid.local:/legacy/flowtimer.git 35 cd flowtimer 26 36 ``` 37 2. Install the app and required dependencies 38 ```bash 39 pip3 install . 27 40 28 2. Install the required dependencies:29 ```bash30 pip3 install .31 41 ``` 32 33 42 ### Usage 34 43 … … 101 110 2. **Run Flowtimer:** 102 111 ```bash 103 python flowtimer.py--config /path/to/config_file.json112 python3 flowtimer.py --start --config /path/to/config_file.json 104 113 ``` 105 114 … … 109 118 To change the timings or the order of phases, simply edit the JSON file and rerun the script. 110 119 111 ### Default Configuration112 113 If no configuration file is provided, Flowtimer will use the following default settings:114 115 - 25 minutes of work116 - 5 minutes of short break117 - 4 work sessions before a 15-minute long break118 120 119 121 ### Command-line Options … … 125 127 126 128 ```bash 127 python flowtimer.py --config myconfig.json129 python3 flowtimer.py --config myconfig.json 128 130 ``` 129 131
Note:
See TracChangeset
for help on using the changeset viewer.