diff --git a/README.md b/README.md index cdc5b3a..189f929 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ # Romodoro -A faulty pomodoro program - ![Romodoro](.assets/romodoro.gif) -**Romodoro is a basic TUI application that keeps track of your time with the help of the pomodoro technique.** It follows the original technique by deviding workloads into a set of 4x4 Work and Pause cycles which are then finished off with a long break. +**Romodoro is a basic TUI application that keeps track of your time with the help of the pomodoro technique.** It follows the original technique by dividing workloads into a set of 4x4 Work and Pause cycles which are then finished off with a long break. # Usage @@ -15,6 +13,7 @@ Options: -w, --work Working length in minutes [default: 25] -p, --pause The length of a pause [default: 5] -l, --long-pause The length of a long pause (after 4 cycles) [default: 20] + -m, --melody-path Path to your melody that is played after a session is over (/path/to/melody.mp3) -h, --help Print help -V, --version Print version diff --git a/src/main.rs b/src/main.rs index 1f5b972..620bcf5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,6 +24,7 @@ struct Args { long_pause: i8, + /// Path to your melody that is played after a session is over (/path/to/melody.mp3) #[arg(short, long, default_value="")] melody_path: String }