9 lines
309 B
Bash
Executable file
9 lines
309 B
Bash
Executable file
#!/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
|
|
|
|
discord="$(dirname "$(readlink "$(which discord)")")"
|
|
rm -r --interactive=never "${discord:?Cant find discord}/resources/app"
|