This is a high-level system utility tweaker for gamers and developers. It is a standalone desktop application built with Electron, Next.js, and Python.
- Hardware Diagnostics: View detailed information about your CPU, RAM, GPU, and storage.
- System Tweaks: Apply a variety of system tweaks to improve performance, FPS, and latency.
- Presets: Use pre-configured presets for different profiles (developer, gamer) and specific games.
- System Analysis and Suggestions: Get personalized recommendations for tweaks and presets based on your system's hardware.
- Restore Points: Create and restore file-based backups of your system settings before applying tweaks.
- History Tracking: View a history of all the tweaks you've applied.
git clone https://github.com/your-username/system-utility-tweaker.git
cd system-utility-tweakerThe frontend is a Next.js application running in Electron.
cd frontend
pnpm installThe backend consists of a collection of Python scripts.
cd ../backend
pip install -r requirements.txtThe application can be run in development mode using the following command from the frontend directory:
cd ../frontend
pnpm devThis will start the Next.js development server and the Electron application at the same time.
To build a distributable package of the application, run the following command from the frontend directory:
pnpm electron:packageThis will create a distributable package in the frontend/dist directory.