Changeset c251a80 in flowtimer for README.md


Ignore:
Timestamp:
08/29/24 15:21:23 (9 months ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
guix
Children:
80996d0
Parents:
7a52e57
Message:

command line argument parser added and README.md updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.md

    r7a52e57 rc251a80  
    1818- Python 3.x
    1919
     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
    2030### Installation
    2131
    22321. Clone the repository:
    2333   ```bash
    24    git clone --branch guix https://gitlab.kid.local:/legacy/flowtimer.git
    25    cd flowtimer
     34    git clone --branch guix https://gitlab.kid.local:/legacy/flowtimer.git
     35        cd flowtimer
    2636   ```
     372. Install the app and required dependencies
     38   ```bash
     39        pip3 install .
    2740
    28 2. Install the required dependencies:
    29    ```bash
    30    pip3 install .
    3141   ```
    32 
    3342### Usage
    3443
     
    1011102. **Run Flowtimer:**
    102111   ```bash
    103    python flowtimer.py --config /path/to/config_file.json
     112   python3 flowtimer.py --start --config /path/to/config_file.json
    104113   ```
    105114
     
    109118   To change the timings or the order of phases, simply edit the JSON file and rerun the script.
    110119
    111 ### Default Configuration
    112 
    113 If no configuration file is provided, Flowtimer will use the following default settings:
    114 
    115 - 25 minutes of work
    116 - 5 minutes of short break
    117 - 4 work sessions before a 15-minute long break
    118120
    119121### Command-line Options
     
    125127
    126128```bash
    127 python flowtimer.py --config myconfig.json
     129python3 flowtimer.py --config myconfig.json
    128130```
    129131
Note: See TracChangeset for help on using the changeset viewer.