You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
313 B
10 lines
313 B
#!/bin/sh
|
|
# Super simple uninstaller.
|
|
# If this doesn't work for you, or you're not on Linux, just
|
|
# manually delete the app folder in your Discord folder (inside resources)
|
|
|
|
set -e
|
|
|
|
dicksword="$(dirname "$(readlink "$(which discord)")")"
|
|
rm -r --interactive=never "${dicksword:?Cant find discord}/resources/app"
|