mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
18 lines
359 B
Bash
Executable File
18 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Remove Heroic Games Launcher and its game libraries, configs, and caches.
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
omarchy-pkg-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."
|