This commit is contained in:
cocktailpeanut
2024-01-04 14:24:15 -05:00
parent 69816bf3e3
commit 563f413255
2 changed files with 30 additions and 0 deletions
+22
View File
@@ -94,6 +94,28 @@ module.exports = async kernel =>
}
}
];
menu.push(
{
icon: 'fa-solid fa-plug',
text: 'Reinstall',
href: 'install.js',
params:
{
run: true,
fullscreen: true
}
},
{
icon: 'fa-solid fa-plug',
text: 'Factory Reset",
href: 'reset.js',
params:
{
run: true,
fullscreen: true
}
}
)
}
else
{
+8
View File
@@ -0,0 +1,8 @@
{
"run": [{
"method": "fs.rm",
"params": {
"path": "facefusion"
}
}]
}