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
| #!/bin/bash | |
| echo "Latest known working version for patching: 2.3.5" | |
| if [[ -z "$1" ]]; then | |
| echo 'Enter absolute path to SteamVR (for example, /home/user/.local/share/Steam/steamapps/common/SteamVR)' | |
| read STEAMVR_PATH | |
| else | |
| STEAMVR_PATH="$1" | |
| fi |