2022-01-21 12:48:54 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -x
|
2023-02-27 16:57:24 +01:00
|
|
|
#export MANGOHUD=1
|
|
|
|
export MANGOHUD_CONFIG=position=bottom-left,font_size=18
|
2022-03-28 15:44:40 +02:00
|
|
|
# So my Steam downloads don't go through the VPN and it won't prompt for
|
|
|
|
# password that often
|
2022-09-28 19:35:16 +02:00
|
|
|
#/usr/bin/mullvad-exclude
|
2024-03-20 05:50:18 +01:00
|
|
|
mangohud gamemoderun /usr/bin/steam "$@"
|
2022-03-28 15:44:40 +02:00
|
|
|
# Having "flatpak run" will make mullvad-exclude lose effect!
|
|
|
|
# Additionally I wasn't able to get this to access the usual game library
|
|
|
|
# or keep using compatibility tool (Proton) checked.
|
2022-09-28 19:35:16 +02:00
|
|
|
#/usr/bin/mullvad-exclude
|
2024-03-20 05:50:18 +01:00
|
|
|
#mangohud gamemoderun /var/lib/flatpak/exports/bin/com.valvesoftware.Steam "$@"
|
2022-01-21 12:48:54 +01:00
|
|
|
set +x
|