blob: e5cf0c8a7347e7ace1271fd39725a23c9252f039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
post_install() {
echo ":: This package, due to the way it is built and packaged, is officially UNSUPPORTED"
echo " by Valve. Please do not bother them if something doesn't run with it."
echo ""
echo " If something does NOT run with this package, but DOES run with the same official"
echo " version, installed according to upstream instructions, feel free to report it through"
echo " the issues in our repository - https://github.com/CachyOS/proton-cachyos"
echo ""
echo " This version of Proton is meant to be used with \"steam-native\" from the"
echo " \"steam-native-runtime\" package on Arch Linux."
echo ""
echo " Proton-CachyOS is built with Wayland support, but it is DISABLED by default."
echo " If you want to test the Wayland driver, set PROTON_ENABLE_WAYLAND=1"
}
post_upgrade() {
post_install
}
|