Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
Drop max-performance (no benefit), begin migration upstream.
Browse files Browse the repository at this point in the history
  • Loading branch information
fewtarius committed Sep 27, 2024
1 parent 4d98e51 commit 84c190f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sudo rm -rf $HOME/homebrew/plugins/SimpleDeckyTDP

echo "installing SimpleDeckyTDP plugin for TDP control"
# download + install simple decky tdp
curl -L $(curl -s https://api.github.com/repos/SteamFork/SimpleDeckyTDP/releases/latest | grep "browser_download_url" | cut -d '"' -f 4) -o $HOME/SimpleDeckyTDP.tar.gz
curl -L $(curl -s https://api.github.com/repos/aarron-lee/SimpleDeckyTDP/releases/latest | grep "browser_download_url" | cut -d '"' -f 4) -o $HOME/SimpleDeckyTDP.tar.gz
sudo tar -xzf SimpleDeckyTDP.tar.gz -C $HOME/homebrew/plugins

# install complete, remove build dir
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-decky-tdp",
"version": "0.4.4-SF",
"version": "0.4.4-SF2",
"description": "Very simple RyzenAdj Decky plugin",
"type": "module",
"scripts": {
Expand All @@ -19,9 +19,9 @@
"author": "Aarron Lee, Fewtarius",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/SteamFork/SimpleDeckyTDP/issues"
"url": "https://github.com/aarron-lee/SimpleDeckyTDP/issues"
},
"homepage": "https://github.com/SteamFork/SimpleDeckyTDP",
"homepage": "https://github.com/aarron-lee/SimpleDeckyTDP",
"devDependencies": {
"@decky/rollup": "^1.0.1",
"@rollup/plugin-commonjs": "^26.0.1",
Expand Down
3 changes: 1 addition & 2 deletions py_modules/cpu_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ def ryzenadj(tdp: int):
'--slow-limit', f"{tdp}",
'--tctl-temp', f"95",
'--apu-skin-temp', f"95",
'--dgpu-skin-temp', f"95",
'--max-performance'
'--dgpu-skin-temp', f"95"
]

results = subprocess.call(commands)
Expand Down
4 changes: 2 additions & 2 deletions py_modules/plugin_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import ssl
import shutil

API_URL = "https://api.github.com/repos/SteamFork/SimpleDeckyTDP/releases/latest"
API_URL = "https://api.github.com/repos/aarron-lee/SimpleDeckyTDP/releases/latest"

def recursive_chmod(path, perms):
for dirpath, dirnames, filenames in os.walk(path):
Expand Down Expand Up @@ -68,4 +68,4 @@ def get_latest_version():
# if tag is a v* tag, remove the v
if tag.startswith("v"):
tag = tag[1:]
return tag
return tag

0 comments on commit 84c190f

Please sign in to comment.