blob: 49ef47cfc3403a0ee0e12c40ef914e64354c727d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
post_install() {
echo "Run 'systemctl restart systemd-binfmt' in order to make the wine binfmt available on your system."
inform_patches
}
post_remove() {
echo "binfmt binary formats will be updated at reboot"
}
post_upgrade() {
inform_patches
}
inform_patches() {
echo "Remember to export WINEESYNC=1 to use Esync or WINEFSYNC=1 to use Fsync"
echo "Set WINE_DISABLE_GLCHILD_HACK=1 to disable the hack that improves performance in osu!, but breaks the editor"
echo ""
echo "Please be aware winepulse.drv will negotiate the lowest possible period size with your audio server"
echo "This currently results in a 5ms period size with Pipewire, and 1 frame with Pulseaudio"
echo "The environment variables 'STAGING_AUDIO_PERIOD' and 'STAGING_AUDIO_DURATION' modify this behavior (units: 10000 is 1ms)"
echo ""
echo "For other interesting environment variables, see https://wiki.winehq.org/Wine-Staging_Environment_Variables"
}
|