Launch Beat Saber with Proton on Linux

This commit is contained in:
Pierce Thompson
2024-03-27 01:53:49 -04:00
committed by Pierce Thompson
parent 12a8a49ccb
commit 9b8f1a7c42
7 changed files with 67 additions and 7 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,
}