We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I was thinking of using print(''\a) few times instead of playing the mp3 so that it will be more simple
def play_alarm(filename = None): for i in range(3): print('\a') time.sleep(1)
The text was updated successfully, but these errors were encountered:
If the terminal is minimized, the user won't know when the pomodoro is completed.
Sorry, something went wrong.
The other option is to get a message box, using pomodoro work_duration reset_duration --notif=True, but this currently needs Qt5.
Thank you @biswaz and @mehdidc
spt has the option to choose a command to run (set at compilation or runtime). My go-to has been beep -f 5000 -l 50. :)
beep -f 5000 -l 50
Edit: Also notifications are handled by libnotify.
No branches or pull requests
Hi,
I was thinking of using print(''\a) few times instead of playing the mp3 so that it will be more simple
def play_alarm(filename = None): for i in range(3): print('\a') time.sleep(1)
The text was updated successfully, but these errors were encountered: