forked from Superalgos/Superalgos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.js
57 lines (51 loc) · 1.84 KB
/
uninstall.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const path = require("path");
const os = require("os");
const { exec } = require("child_process");
// Get the name of the main directory
let cwd = __dirname;
let dirs = cwd.split(path.sep);
let name = dirs[dirs.length - 1];
// Remove Windows Shortcuts
if (os.platform() == "win32") {
let desktop = path.join( os.homedir(), "Desktop", `${name}.lnk`)
let startMenu = path.join( os.homedir(), "AppData", "Roaming", "Microsoft", "Windows", "Start Menu", "Programs", `${name}.lnk`)
// Remove .desktop files
let command = `del "${desktop}" & del "${startMenu}"`
exec( command,
function ( error ){
if (error) {
console.log('');
console.log("There was an error uninstalling shortcuts: ");
console.log('');
console.log( error );
return;
} else {
console.log('');
console.log("Shortcuts have been uninstalled successfully.");
}
});
// Remove Linux Shortcuts
} else if (os.platform() == "linux") {
// Check for Ubuntu
let version = os.version();
if (version.includes("Ubuntu")) {
// Remove .desktop files
let command = `rm ~/Desktop/${name}.desktop & rm ~/.local/share/applications/${name}.desktop`
exec( command,
function ( error, stdout ){
if (error) {
console.log('');
console.log("There was an error uninstalling shortcuts: ");
console.log('');
console.log( error );
return;
} else {
console.log('');
console.log("Shortcuts have been uninstalled successfully.");
}
});
}
// Mac Shortcuts
} else if (os.platform() == "darwin") {
// Uninstall Mac shortcuts here once they have been added.
}