blob: 2a31f57361aa4b47409fdb98929d9c960657dbff (
plain)
1
2
3
4
5
6
7
8
9
|
#!/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"
|