2022-01-21 12:48:54 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -x
|
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
|
|
|
|
/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
|
|
|
|
#/var/lib/flatpak/exports/bin/com.valvesoftware.Steam $@
|
2022-01-21 12:48:54 +01:00
|
|
|
set +x
|