This file contains hidden or 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 time | |
import winsound | |
import threading | |
import msvcrt # Only works on Windows | |
def user_prompt() -> tuple[int, int]: | |
focus_dur = int(input("Enter the focus duration (minutes): ")) | |
break_dur = int(input("Enter the break duration (minutes): ")) | |
return focus_dur, break_dur |