|
|
|
// Copyright (C) 2021 Tassilo Horn <tsdh@gnu.org>
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU General Public License as published by the Free
|
|
|
|
// Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
// more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along with
|
|
|
|
// this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! TOML configuration for swayr.
|
|
|
|
|
|
|
|
use directories::ProjectDirs;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::fs::DirBuilder;
|
|
|
|
use std::fs::OpenOptions;
|
|
|
|
use std::io::{Read, Write};
|
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct Config {
|
|
|
|
pub launcher: Option<Launcher>,
|
|
|
|
pub format: Option<Format>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Launcher {
|
|
|
|
fn default() -> Self {
|
|
|
|
Launcher {
|
|
|
|
executable: Some("wofi".to_string()),
|
|
|
|
args: Some(vec![
|
|
|
|
"--show=dmenu".to_string(),
|
|
|
|
"--allow-markup".to_string(),
|
|
|
|
"--allow-images".to_string(),
|
|
|
|
"--insensitive".to_string(),
|
|
|
|
"--cache-file=/dev/null".to_string(),
|
|
|
|
"--parse-search".to_string(),
|
|
|
|
"--prompt={prompt}".to_string(),
|
|
|
|
]),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Format {
|
|
|
|
fn default() -> Self {
|
|
|
|
Format {
|
|
|
|
window_format: Some(
|
|
|
|
"{urgency_start}<b>“{title}”</b>{urgency_end} \
|
|
|
|
— <i>{app_name}</i> on workspace {workspace_name} \
|
|
|
|
<span alpha=\"20000\">({id})</span>"
|
|
|
|
.to_string(),
|
|
|
|
),
|
|
|
|
workspace_format: Some(
|
|
|
|
"<b>Workspace {name}</b> \
|
|
|
|
<span alpha=\"20000\">({id})</span>"
|
|
|
|
.to_string(),
|
|
|
|
),
|
|
|
|
urgency_start: Some(
|
|
|
|
"<span background=\"darkred\" foreground=\"yellow\">"
|
|
|
|
.to_string(),
|
|
|
|
),
|
|
|
|
urgency_end: Some("</span>".to_string()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Config {
|
|
|
|
fn default() -> Self {
|
|
|
|
Config {
|
|
|
|
launcher: Some(Launcher::default()),
|
|
|
|
format: Some(Format::default()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct Launcher {
|
|
|
|
pub executable: Option<String>,
|
|
|
|
pub args: Option<Vec<String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct Format {
|
|
|
|
pub window_format: Option<String>,
|
|
|
|
pub workspace_format: Option<String>,
|
|
|
|
pub urgency_start: Option<String>,
|
|
|
|
pub urgency_end: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_config_file_path() -> Box<Path> {
|
|
|
|
let proj_dirs = ProjectDirs::from("", "", "swayr").expect("");
|
|
|
|
let config_dir = proj_dirs.config_dir();
|
|
|
|
if !config_dir.exists() {
|
|
|
|
DirBuilder::new()
|
|
|
|
.recursive(true)
|
|
|
|
.create(config_dir)
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
config_dir.join("config.toml").into_boxed_path()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn save_config(cfg: Config) {
|
|
|
|
let path = get_config_file_path();
|
|
|
|
let content =
|
|
|
|
toml::to_string_pretty(&cfg).expect("Cannot serialize config.");
|
|
|
|
let mut file = OpenOptions::new()
|
|
|
|
.read(false)
|
|
|
|
.write(true)
|
|
|
|
.create(true)
|
|
|
|
.open(path)
|
|
|
|
.unwrap();
|
|
|
|
file.write_all(content.as_str().as_bytes()).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn load_config() -> Config {
|
|
|
|
let path = get_config_file_path();
|
|
|
|
if !path.exists() {
|
|
|
|
save_config(Config::default());
|
|
|
|
// Tell the user that a fresh default config has been created.
|
|
|
|
std::process::Command::new("swaynag")
|
|
|
|
.arg("--background")
|
|
|
|
.arg("00FF44")
|
|
|
|
.arg("--text")
|
|
|
|
.arg("0000CC")
|
|
|
|
.arg("--message")
|
|
|
|
.arg(
|
|
|
|
"Welcome to swayr! ".to_owned()
|
|
|
|
+ "I've created a fresh config for use with wofi for you in "
|
|
|
|
+ &path.to_string_lossy()
|
|
|
|
+ ". Adapt it to your needs.",
|
|
|
|
)
|
|
|
|
.arg("--type")
|
|
|
|
.arg("warning")
|
|
|
|
.arg("--dismiss-button")
|
|
|
|
.arg("Thanks!")
|
|
|
|
.spawn()
|
|
|
|
.ok();
|
|
|
|
}
|
|
|
|
let mut file = OpenOptions::new()
|
|
|
|
.read(true)
|
|
|
|
.write(false)
|
|
|
|
.create(false)
|
|
|
|
.open(path)
|
|
|
|
.unwrap();
|
|
|
|
let mut buf: String = String::new();
|
|
|
|
file.read_to_string(&mut buf).unwrap();
|
|
|
|
toml::from_str(&buf).expect("Invalid config.")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_load_config() {
|
|
|
|
let cfg = load_config();
|
|
|
|
println!("{:?}", cfg);
|
|
|
|
}
|