Files
pipewire-soundpad/src/utils/config.rs
T
2026-05-15 19:32:26 +03:00

8 lines
206 B
Rust

use anyhow::Result;
use std::path::PathBuf;
pub fn get_config_path() -> Result<PathBuf> {
let config_path = dirs::config_dir().expect("Failed to obtain config dir");
Ok(config_path.join("pwsp"))
}