Finish Network Menu rework...

This commit is contained in:
Jas Singh
2024-06-29 18:10:21 -07:00
parent 5ddf5c240d
commit da5d297b60
10 changed files with 328 additions and 106 deletions

View File

@@ -42,17 +42,5 @@ App.config({
launcher: 350,
bar0: 350,
},
onConfigParsed: () =>
Utils.subprocess(
[
"python3",
`${App.configDir}/services/bluetooth.py`,
],
// callback when the program outputs something to stdout
(output) => console.info(output),
// callback on error
(err) => console.info(err),
),
onConfigParsed: () => Utils.execAsync(`python3 ${App.configDir}/services/bluetooth.py`),
});