summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vscode/tasks.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 78025a5..5a5e3b1 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -72,6 +72,15 @@
"problemMatcher": []
},
{
+ "label": "restartloader",
+ "detail": "Restart the plugin loader (to load updated python code)",
+ "type": "shell",
+ "group": "none",
+ "dependsOn": [],
+ "command": "ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S systemctl restart plugin_loader'",
+ "problemMatcher": []
+ },
+ {
"label": "chmodfolders",
"detail": "chmods folders to prevent perms issues",
"type": "shell",
@@ -98,6 +107,8 @@
"dependsOn": [
"buildall",
"deployall"
+ // Uncomment this line if you'd like your python code reloaded after deployment (this will restart Steam)
+ // ,"restartloader"
],
"problemMatcher": []
}