gabrielzschmitz / Tomato.C

A pomodoro timer written in pure C.
GNU General Public License v3.0
315 stars 19 forks source link

can't go 75+15 method #22

Closed aurkaxi closed 1 year ago

aurkaxi commented 1 year ago

I regularly work in 75+15 method. but i can't go higher than 50 work time in this program. How do i bypass this?

gabrielzschmitz commented 1 year ago

Just change this line in input.c, settingsInput(appData * app, char key) function:

        else if(app->menuPos == 2){
-            if(app->workTime != (50 * 60 * 8))
+            if(app->workTime != (75 * 60 * 8))
                app->workTime = app->workTime + (5 * 60 * 8);
        }

Hope this is helpful for you!

aurkaxi commented 1 year ago

Thank you. <3. Also thanks for having make uninstall functionality.

aurkaxi commented 12 months ago

You even increased it the repo. woah. thank you.