-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremove.sh
More file actions
executable file
·84 lines (49 loc) · 1.63 KB
/
Copy pathremove.sh
File metadata and controls
executable file
·84 lines (49 loc) · 1.63 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env bash
devilspie_remove () {
: # pass
# sudo apt-get purge devilspie
}
tool_remove_install_target_dir () {
sudo rm "/usr/local/share/devilspie-ext-tool/" -rf
}
tool_remove_win_info_script () {
sudo rm -f "/usr/local/bin/devilspie-win-info"
}
tool_remove_win_info_desktop_entry_from_desktop () {
rm -f "$HOME/Desktop/devilspie-win-info.desktop"
}
tool_remove_win_info_desktop_entry_from_applications () {
rm -f "$HOME/.local/share/applications/devilspie-win-info.desktop"
}
tool_remove_win_list_script () {
sudo rm -f "/usr/local/bin/devilspie-win-list"
}
tool_remove_win_list_desktop_entry_from_desktop () {
rm -f "$HOME/Desktop/devilspie-win-list.desktop"
}
tool_remove_win_list_desktop_entry_from_applications () {
rm -f "$HOME/.local/share/applications/devilspie-win-list.desktop"
}
tool_remove_debug_info_script () {
sudo rm -f "/usr/local/bin/devilspie-debug-info"
}
tool_remove_debug_info_desktop_entry_from_desktop () {
rm -f "$HOME/Desktop/devilspie-debug-info.desktop"
}
tool_remove_debug_info_desktop_entry_from_applications () {
rm -f "$HOME/.local/share/applications/devilspie-debug-info.desktop"
}
tool_remove_main () {
devilspie_remove
tool_remove_install_target_dir
tool_remove_win_info_script
tool_remove_win_info_desktop_entry_from_desktop
tool_remove_win_info_desktop_entry_from_applications
tool_remove_win_list_script
tool_remove_win_list_desktop_entry_from_desktop
tool_remove_win_list_desktop_entry_from_applications
tool_remove_debug_info_script
tool_remove_debug_info_desktop_entry_from_desktop
tool_remove_debug_info_desktop_entry_from_applications
}
tool_remove_main