We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9bbfe commit 1f3da6eCopy full SHA for 1f3da6e
pomodoro_timer/pomodoro_timer.py
@@ -78,8 +78,7 @@ def start_timer(options, cycle_limit=5):
78
winsound.Beep(323, 250)
79
winsound.Beep(583, 250)
80
except:
81
- os.system('beep -f %s -l %s' % (323,250))
82
- os.system('beep -f %s -l %s' % (583,250))
+ os.system('tput bel')
83
84
while temp_break:
85
title_label.config(text="You should be taking a break now.")
@@ -92,8 +91,7 @@ def start_timer(options, cycle_limit=5):
92
91
winsound.Beep(523, 250)
93
winsound.Beep(783, 250)
94
95
96
97
cycles += 1
98
99
reset()
0 commit comments