mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-05 00:59:22 +01:00
13 lines
445 B
Bash
Executable File
13 lines
445 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
# So my Steam downloads don't go through the VPN and it won't prompt for
|
|
# password that often
|
|
#/usr/bin/mullvad-exclude
|
|
/usr/bin/steam $@
|
|
# 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.
|
|
#/usr/bin/mullvad-exclude
|
|
#/var/lib/flatpak/exports/bin/com.valvesoftware.Steam $@
|
|
set +x
|