Created
November 3, 2024 15:08
-
-
Save JLCareglio/cb9c1e02e3d2aff505ccb2ccf1f5c9d9 to your computer and use it in GitHub Desktop.
🇺🇸 Toggles SBS 3D in SteamVR theater mode. 🇦🇷 Alterna el SBS 3D en el modo cine de SteamVR. 🇯🇵 SteamVRシアターモードでSBS 3Dを切り替えます。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for /f "tokens=2* delims= " %%A in ('reg query "HKLM\SOFTWARE\WOW6432Node\Valve\Steam" /v InstallPath 2^>nul') do set "SteamPath=%%B" | |
set SteamVRBinPath=%SteamPath%\steamapps\common\SteamVR\bin\win64 | |
"%SteamVRBinPath%\vrcmd.exe" --mailboxcmd systemui_dashboard toggle_theater_stereo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$SteamPath = Get-ItemPropertyValue 'HKLM:\SOFTWARE\WOW6432Node\Valve\Steam' 'InstallPath' | |
$SteamVRBinPath = $SteamPath + '\steamapps\common\SteamVR\bin\win64' | |
& $SteamVRBinPath\vrcmd.exe --mailboxcmd systemui_dashboard toggle_theater_stereo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment