Merge pull request #451 from Insprill/feature/linux-launch

Add support for launching Beat Saber on Linux
This commit is contained in:
MathieuG-P
2024-07-10 19:38:39 +02:00
committed by GitHub
12 changed files with 128 additions and 12 deletions
@@ -14,6 +14,7 @@ export enum BSLaunchError{
OCULUS_NOT_RUNNING = "OCULUS_NOT_RUNNING",
BS_EXIT_ERROR = "EXIT",
OCULUS_LIB_NOT_FOUND = "OCULUS_LIB_NOT_FOUND",
PROTON_NOT_SET = "PROTON_NOT_SET",
UNKNOWN_ERROR = "UNKNOWN_ERROR",
}
@@ -27,4 +28,4 @@ export enum BSLaunchWarning{
UNABLE_TO_LAUNCH_STEAM = "UNABLE_TO_LAUNCH_STEAM",
}
export type BSLaunchEventType = BSLaunchEvent | BSLaunchWarning;
export type BSLaunchEventType = BSLaunchEvent | BSLaunchWarning;
@@ -7,4 +7,5 @@ export interface LaunchOption {
debug?: boolean,
additionalArgs?: string[],
admin?: boolean,
protonPath?: string,
}