mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-09-25 02:38:36 +00:00
fix: point to correct ipc socket for wivrn (#33)
This commit is contained in:
parent
988b104f7d
commit
19173a98b3
1 changed files with 6 additions and 2 deletions
|
@ -47,12 +47,16 @@ impl Profile {
|
||||||
other => other,
|
other => other,
|
||||||
},
|
},
|
||||||
runtime = match self.xrservice_type {
|
runtime = match self.xrservice_type {
|
||||||
XRServiceType::Wivrn => "wivrn",
|
|
||||||
XRServiceType::Monado => "monado",
|
XRServiceType::Monado => "monado",
|
||||||
|
XRServiceType::Wivrn => "wivrn",
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
opts.push(format!(
|
opts.push(format!(
|
||||||
"PRESSURE_VESSEL_FILESYSTEMS_RW=$XDG_RUNTIME_DIR/monado_comp_ipc"
|
"PRESSURE_VESSEL_FILESYSTEMS_RW=$XDG_RUNTIME_DIR/{xrservice}_comp_ipc",
|
||||||
|
xrservice = match self.xrservice_type {
|
||||||
|
XRServiceType::Monado => "monado",
|
||||||
|
XRServiceType::Wivrn => "wivrn",
|
||||||
|
}
|
||||||
));
|
));
|
||||||
opts.push("%command%".into());
|
opts.push("%command%".into());
|
||||||
opts.join(" ")
|
opts.join(" ")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue