"Written" by Agentseed. | Actually written by ChatGPT (o1 model, 3/2024).
Basically the windows clock app kinda sucks, so I "made" a better solution (kinda).
The app keeps alarms in alarms.json, so if you're putting the app in an appdata folder, you need to make sure that apps are allowed to write to that file.
Download the latest release
Run it
Clone repo:
git clone https://github.com/agent-seed/alarm-clock or download zip and decompress it
Enter app directory:
cd alarm-clock
Install required packages:
pip -r requirements.txt
Run:
python alarm.py
Clone repo:
git clone https://github.com/agent-seed/alarm-clock or download zip and decompress it
Enter app directory:
cd alarm-clock
Install required packages:
pip -r requirements.txt
Install pyinstaller:
pip install pyinstaller
Build app:
pyinstaller --onefile --noconsole --icon=assets/alarm.ico alarm.py
The exe should be located at alarm-clock/dist
Important
The minimize to system tray option does not work on the exe, to use this please run as a python file. updates to this issue.