A utility for automatic creation Autorun files, as well as quickly moving to the main locations of Autorun entries for manual modification.
✅ So far only for Windows
✅ Adding startup entries to the autorun folder:
Win + R shell:startup
✅ Adding startup entries to the registry
✅ Adding startup entries to the Task Scheduler
✅ Quick transition to all kinds of autorun places:
- Task Scheduler
- HKEY_LOCAL_MACHINE\...\Run
- HKEY_CURRENT_USER\...\Run
- HKEY_CURRENT_USER\...\RunOnce
- HKEY_LOCAL_MACHINE\...\RunOnce
Dark Mode:
Light Mode:
first install requirements.txt with pip
> pip install -r requirements.txt
Next, you can run autorun.py
Or build the .exe file with the following command:
> pip install pyinstaller
> pyinstaller -F --onefile --noconsole ^
--clean --icon="customtkinter\assets\icon.ico" ^
--add-data=customtkinter;customtkinter "autorun.py"
The executable will be created in dist
directory
Or you can just download already built executable here
TODO
- GPLv3