mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-06-19 12:13:32 +00:00
8 lines
206 B
Rust
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"))
|
|
}
|