Created
August 19, 2022 08:17
-
-
Save asilbalaban/d203f835d8842d9f7aac0c17145f55e9 to your computer and use it in GitHub Desktop.
pomodoro.py example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import rumps | |
class PomodoroApp(object): | |
def __init__(self): | |
self.config = { | |
"app_name": "Pomodoro", | |
"start": "Start Timer", | |
"pause": "Pause Timer", | |
"continue": "Continue Timer", | |
"stop": "Stop Timer", | |
"break_message": "Time is up! Take a break :)", | |
"interval": 60 * 25 | |
} | |
self.app = rumps.App(self.config["app_name"]) | |
self.timer = rumps.Timer(self.on_tick, 1) | |
self.interval = self.config["interval"] | |
self.set_up_menu() | |
self.start_pause_button = rumps.MenuItem( | |
title=self.config["start"], callback=self.start_timer) | |
self.stop_button = rumps.MenuItem( | |
title=self.config["stop"], callback=self.stop_timer) | |
self.app.menu = [self.start_pause_button, self.stop_button] | |
def set_up_menu(self): | |
self.timer.stop() | |
self.timer.count = 0 | |
self.app.title = "🍅" | |
def on_tick(self, sender): | |
time_left = sender.end - sender.count | |
mins = time_left // 60 if time_left >= 0 else time_left // 60 + 1 | |
secs = time_left % 60 if time_left >= 0 else (-1 * time_left) % 60 | |
if mins == 0 and time_left < 0: | |
rumps.notification( | |
title=self.config["app_name"], | |
subtitle=self.config["break_message"], | |
message='') | |
self.stop_timer(self) | |
else: | |
self.stop_button.set_callback(self.stop_timer) | |
self.app.title = '{:2d}:{:02d}'.format(mins, secs) | |
sender.count += 1 | |
def start_timer(self, sender): | |
if sender.title.lower().startswith(("start", "continue")): | |
if sender.title == self.config["start"]: | |
self.timer.count = 0 | |
self.timer.end = self.interval | |
sender.title = self.config["pause"] | |
self.timer.start() | |
else: | |
sender.title = self.config["continue"] | |
self.timer.stop() | |
def stop_timer(self, sender): | |
self.set_up_menu() | |
self.stop_button.set_callback(None) | |
self.start_pause_button.title = self.config["start"] | |
def run(self): | |
self.app.run() | |
if __name__ == '__main__': | |
app = PomodoroApp() | |
app.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment