From 56d500a9f914ce2ddad038223711192e4d1dcbe1 Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Sat, 28 Sep 2024 18:08:00 +0200 Subject: [PATCH] fix: update wivrn comp ipc path --- src/profile.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/profile.rs b/src/profile.rs index 57c43e4..fff82b5 100644 --- a/src/profile.rs +++ b/src/profile.rs @@ -47,7 +47,7 @@ impl XRServiceType { .expect("XDG runtime directory is not available") .join(match self { XRServiceType::Monado => "monado_comp_ipc", - XRServiceType::Wivrn => "wivrn_comp_ipc", + XRServiceType::Wivrn => "wivrn/comp_ipc", }) } } @@ -367,7 +367,7 @@ impl Profile { pub fn get_env_vars(&self) -> Vec { if self.can_be_built { return vec![ - "PRESSURE_VESSEL_FILESYSTEMS_RW=\"$XDG_RUNTIME_DIR/wivrn_comp_ipc:$XDG_RUNTIME_DIR/monado_comp_ipc\"".into(), + "PRESSURE_VESSEL_FILESYSTEMS_RW=\"$XDG_RUNTIME_DIR/wivrn/comp_ipc:$XDG_RUNTIME_DIR/monado_comp_ipc\"".into(), ]; } self.env_vars_full()