mirror of
https://gitlab.com/ryzen-controller-team/ryzen-controller.git
synced 2024-12-22 10:03:28 +07:00
DEPRECATED: please use AATU instead: https://amdaputuningutility.com/
----
Unlock the true performance of your Ryzen Mobile Processor: https://www.ryzencontroller.com/
For Series 2xxx, 3xxx, 4xxx and 5xxx
Gui for https://github.com/FlyGoat/Ryz
.vscode | ||
assets | ||
bin | ||
installers | ||
js | ||
vendor | ||
.gitignore | ||
.gitlab-ci.yml | ||
index.html | ||
LICENSE.md | ||
main.js | ||
package-lock.json | ||
package.json | ||
README.md |
Ryzen controller
I'm looking for maintainers and reviewers, if you know html/js and have some spare times, please open an issue or ping @storm1er#0376
on discord.
Thanks to https://github.com/FlyGoat/RyzenAdj and his author, ryzenadj.exe is included (windows only for now).
What's this?
- It's a little Ryzen Master for laptops.
- Works best on 2xxx Ryzen series (3xxx series is experimental)
- More videos:
Installation
Windows
- Go to release page
- Download the latest
RyzenControllerInstaller.exe
- Enjoy!
Debian like
- Go to RyzenAdj repo.
- Download and build as explained in Build requirements.
- Go to Ryzen Controller's release page
- Download the latest
ryzencontroller_VERSION_ARCH.deb
file. sudo dpkg -i ryzencontroller_VERSION_ARCH.deb
- Launch with
sudo ryzencontroller
- Set the path to your freshly builded
ryzenadj
binary into the "settings" tab. - Enjoy!
Redhat like
- Go to RyzenAdj repo.
- Download and build as explained in Build requirements.
- Go to Ryzen Controller's release page
- Download the latest
ryzencontroller_VERSION_ARCH.rpm
file. sudo rpm -u ryzencontroller_VERSION_ARCH.rpm
- Launch with
sudo ryzencontroller
- Set the path to your freshly builded
ryzenadj
binary into the "settings" tab. - Enjoy!
Development
THIS PART IS ONLY FOR DEVELOPMENT PURPOSE, IF YOU JUST WANT TO USE RYZEN CONTROLLER, SEE THE INSTALLATION PART.
Pre-requisite
- NodeJS v10.15.1 or newer.
- About building dependencies:
- No dependencies for windows installer
- See electron-installer-debian requirements
- See electron-installer-redhat requirements
Dev install
$> cd project
$> npm install
$> npm start
Building binaries
Using Windows
$> cd project
$> npm run-script package-win32
Using Linux
$> cd project
$> npm run-script package-linux
Building installers
For Windows
$> cd project
$> npm run-script package-win32
$> npm run-script build-exe
For Debian like
$> cd project
$> npm run-script package-linux
$> npm run-script build-deb
For Redhat like
$> cd project
$> npm run-script package-linux
$> npm run-script build-rpm