mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-09-25 18:58:38 +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,
|
||||
},
|
||||
runtime = match self.xrservice_type {
|
||||
XRServiceType::Wivrn => "wivrn",
|
||||
XRServiceType::Monado => "monado",
|
||||
XRServiceType::Wivrn => "wivrn",
|
||||
}
|
||||
));
|
||||
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.join(" ")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue