Shutdown Scheduler is a simple GUI application built with Python's Tkinter library. It allows users to set a timer to automatically shut down their computer after a specified duration.
- User-friendly interface to set a shutdown timer.
- Cross-platform support: Works on Windows, Linux, and macOS.
- Confirmation dialog to ensure accidental shutdowns are avoided.
- Customizable shutdown timer in seconds.
- Python 3.x
- Tkinter (usually included with standard Python installations)
- Clone the repository:
git clone https://github.com/ACRZeuss/Shutdown-Scheduler.git
- Navigate to the project directory:
cd Shutdown-Scheduler
- Run the application:
python main.py
- Enter the shutdown timer duration in seconds.
- Confirm the shutdown request.
To build the executable with a custom icon, use PyInstaller:
pyinstaller --onefile --windowed --icon=app_icon.ico main.pyThe executable will be created in the dist directory.
This project is licensed under the MIT License.