18 lines
358 B
Bash
Executable File
18 lines
358 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# archypr:summary=Remove Heroic Games Launcher and its game libraries, configs, and caches.
|
|
# archypr:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
archypr-kg-drop heroic-games-launcher-bin
|
|
|
|
rm -rf \
|
|
"$HOME/.config/heroic" \
|
|
"$HOME/.local/share/heroic" \
|
|
"$HOME/.cache/heroic" \
|
|
"$HOME/Games/Heroic"
|
|
|
|
echo ""
|
|
echo "Heroic and its data have been removed."
|