remove wayvr feature

This commit is contained in:
galister
2026-01-09 19:41:24 +09:00
parent 5e77bab588
commit eb69ec8fe3
11 changed files with 14 additions and 73 deletions

View File

@@ -3,8 +3,6 @@ use std::{path::PathBuf, sync::LazyLock};
pub enum ConfigRoot {
Generic,
#[allow(dead_code)]
WayVR,
}
const FALLBACK_CONFIG_PATH: &str = "/tmp/wlxoverlay";
@@ -27,7 +25,6 @@ impl ConfigRoot {
pub fn get_conf_d_path(&self) -> PathBuf {
get_config_root().join(match self {
Self::Generic => "conf.d",
Self::WayVR => "wayvr.conf.d",
})
}