Simple timer made out of PyQt
PyQt5 >= 5.8
pip3 install git+/~https://github.com/yjg30737/pyqt-timer.git --upgrade
- Being able to play/pause/stop the timer after complete the timer settings (press the settings icon or double-click the label(00:00:00)
- When time is over, notifier will show up at the bottom right of the system background. Refresh button on the notifier make the timer operate itself again.
from PyQt5.QtWidgets import QApplication
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
timerGadget = Timer()
timerGadget.show()
app.exec_()
Timer
Timer settings dialog
Ticking timer
When time is over pyqt-notifier window will pop up.
This package make new file(timerSettings.ini) in main script to save the hour, minute, second chosen by user.