do not install SteamVR manifest by default

This commit is contained in:
galister 2026-07-13 10:27:17 +09:00
parent a8262c1de4
commit 635cfef63e
2 changed files with 8 additions and 2 deletions

View File

@ -112,7 +112,9 @@ pub fn openvr_run(args: &Args) -> Result<(), BackendError> {
app.late_init();
let _ = install_manifest(&mut app_mgr);
if args.install {
let _ = install_manifest(&mut app_mgr);
}
let mut overlays = OverlayWindowManager::<OpenVrOverlayData>::new(&mut app, args.headless)?;

View File

@ -73,10 +73,14 @@ struct Args {
#[arg(long)]
wait: bool,
/// Uninstall OpenVR manifest and exit
/// Uninstall SteamVR manifest and exit
#[arg(long)]
uninstall: bool,
/// Install SteamVR manifest (not recommended; WayVR may have issues when auto-started by SteamVR!)
#[arg(long)]
install: bool,
/// Replace running WayVR instance
#[arg(long)]
replace: bool,