update for new react, also support linux aarch64 builds

This commit is contained in:
AAGaming 2025-11-20 00:38:21 -05:00
commit b25d4f81be
No known key found for this signature in database
GPG key ID: 00CFCD925A3E0C50
5 changed files with 329 additions and 263 deletions

10
.vscode/tasks.json vendored
View file

@ -135,7 +135,15 @@
"detail": "chmods plugins folder to prevent perms issues",
"type": "shell",
"group": "none",
"command": "ssh ${config:deckuser}@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S chmod -R ug+rw ${config:deckdir}/homebrew/plugins/'",
"command": "ssh ${config:deckuser}@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S chown ${config:deckuser} ${config:deckdir}/homebrew/plugins/'",
"problemMatcher": []
},
{
"label": "restartdecky",
"detail": "restarts decky",
"type": "shell",
"group": "none",
"command": "ssh ${config:deckuser}@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S systemctl restart plugin_loader'",
"problemMatcher": []
},
]