mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
22 lines
534 B
Bash
Executable File
22 lines
534 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Remove Lutris, Wine, umu-launcher, and all their configs and caches.
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
omarchy-pkg-drop lutris wine-staging wine-mono wine-gecko winetricks python-protobuf umu-launcher
|
|
|
|
rm -rf \
|
|
"$HOME/.config/lutris" \
|
|
"$HOME/.local/share/lutris" \
|
|
"$HOME/.cache/lutris" \
|
|
"$HOME/.local/share/umu" \
|
|
"$HOME/.cache/umu" \
|
|
"$HOME/.wine" \
|
|
"$HOME/.cache/wine" \
|
|
"$HOME/.cache/winetricks"
|
|
|
|
echo ""
|
|
echo "Lutris, Wine, umu-launcher, and their configs have been removed."
|