47 lines
1.1 KiB
Markdown
47 lines
1.1 KiB
Markdown
# Notes
|
|
|
|
Gamedir
|
|
|
|
```sh
|
|
cd ~/.local/share/BSManager/BSInstances/1.40.8
|
|
```
|
|
|
|
## Logs
|
|
|
|
```sh
|
|
tail -f Logs/_latest.log
|
|
```
|
|
|
|
## FPFC Mode
|
|
|
|
Press `g` to release the mouse input from the game
|
|
|
|
Mouse input is broken because Wayland is not yet supported.
|
|
|
|
## Testing
|
|
|
|
To run beat saber, you can mimic the launch execution that bs-manager performs with the following:
|
|
|
|
```sh
|
|
cd "/home/pleb/.local/share/BSManager/BSInstances/1.40.8"
|
|
|
|
export SteamAppId=620980 SteamOverlayGameId=620980 SteamGameId=620980
|
|
export WINEDLLOVERRIDES='winhttp=n,b'
|
|
export STEAM_COMPAT_DATA_PATH="$HOME/.local/share/BSManager/SharedContent/compatdata"
|
|
export STEAM_COMPAT_INSTALL_PATH="$PWD"
|
|
export STEAM_COMPAT_CLIENT_INSTALL_PATH="/home/pleb/.local/share/Steam"
|
|
export STEAM_COMPAT_APP_ID=620980
|
|
export SteamEnv=1
|
|
export OXR_PARALLEL_VIEWS=1
|
|
|
|
steam-run "/home/pleb/.local/share/Steam/steamapps/common/Proton - Experimental/proton" run "$PWD/Beat Saber.exe" --no-yeet fpfc
|
|
```
|
|
|
|
Then, after a few seconds you can read the log messages after BS starts up
|
|
|
|
```
|
|
cat ~/.local/share/BSManager/BSInstances/1.40.8/Logs/_latest.log | grep Setlist
|
|
```
|
|
|
|
Thereafter, kill the process.
|