blob: 40bc9aa29391cfc861bd49a5f36a6d27c425c3db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
cat <<'EOF'
[plutonium-launcher-bin]
On first run, this will create a per-user Wine prefix at:
~/.local/share/plutonium-wine
and install required Winetricks components (dotnet48, vcrun, xact, dxvk).
If you ever want to reset it, delete that folder and run:
plutonium-launcher
User data (prefix) is not managed by pacman and won't be removed on uninstall.
EOF
}
post_remove() {
cat <<'EOF'
[plutonium-launcher-bin] removed.
Per-user Wine prefixes (e.g., ~/.local/share/plutonium-wine) remain.
Delete them manually if you want a clean slate.
EOF
}
|