10 lines
251 B
Bash
Executable File
10 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
APP=~/.local/share/Steam/steamapps/common/OxygenNotIncluded
|
|
SAVE=~/.config/unity3d/Klei/Oxygen\ Not\ Included
|
|
|
|
set -ex
|
|
ln -sf "$APP/OxygenNotIncluded_Data/Managed" Libs
|
|
ln -sf "$APP" OxygenNotIncluded
|
|
ln -sf "$SAVE" OxygenNotIncludedData
|