Skip to content

Instantly share code, notes, and snippets.

@ArtskydJ
Created June 26, 2019 00:16
Show Gist options
  • Save ArtskydJ/708cce6e97e9f486eec11062d05a9bb7 to your computer and use it in GitHub Desktop.
Save ArtskydJ/708cce6e97e9f486eec11062d05a9bb7 to your computer and use it in GitHub Desktop.
Make Rocket League Dual-Monitor

Use these scripts to make Rocket League work on your Dual Monitor setup.

Download them somewhere onto your computer.

If you have two 1920x1080, or two 1920x1200 screens, you do not need to modify the scripts at all.

If you have a different resolution, then change the numbers below. For example, if you have a pair of 2560x1440 screens, then you will have to change 1920 to 2560 in both files, and you will have to change 3840 to 5120 in both files

If your screens have different heights, then Rocket League does not work well with that.

If your screens have different widths, then add the widths together, and change both instances of 3840 with your width sum.

@echo off
pushd %HOMEDRIVE%%HOMEPATH%\Documents\My Games\Rocket League\TAGame\Config\
>nul find "Borderless=True" TASystemSettings.ini && (
powershell -Command "(gc TASystemSettings.ini) -replace 'ResX=3840','ResX=1920' | sc TASystemSettings.ini"
popd
echo Success
sleep 1
) || (
echo ERROR: Borderless is not enabled
popd
sleep 3
)
@echo off
pushd %HOMEDRIVE%%HOMEPATH%\Documents\My Games\Rocket League\TAGame\Config\
>nul find "Borderless=True" TASystemSettings.ini && (
powershell -Command "(gc TASystemSettings.ini) -replace 'ResX=1920','ResX=3840' | sc TASystemSettings.ini"
popd
echo Success
sleep 1
) || (
echo ERROR: Borderless is not enabled
popd
sleep 3
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment