mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
18 lines
377 B
Bash
Executable File
18 lines
377 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Remove the Minecraft launcher along with its worlds, mods, and caches.
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
omarchy-pkg-drop minecraft-launcher
|
|
|
|
rm -rf \
|
|
"$HOME/.minecraft" \
|
|
"$HOME/.config/Minecraft Launcher" \
|
|
"$HOME/.local/share/minecraft-launcher" \
|
|
"$HOME/.cache/minecraft"
|
|
|
|
echo ""
|
|
echo "Minecraft and its data have been removed."
|