5 releases
0.1.5 | Nov 4, 2024 |
---|---|
0.1.4 | Nov 2, 2024 |
0.1.3 | Nov 2, 2024 |
0.1.2 | Nov 1, 2024 |
0.1.1 | Oct 29, 2024 |
#129 in Configuration
1,238 downloads per month
63KB
355 lines
HyprParser
A parser for Hyprland's configuration files written in Rust 🚀🦀
Usage
HyprParser is available on Crates.io. It can be added as a dependency with:
$ cargo add hyprparser
Here's an example usage:
# Cargo.toml
[dependencies]
hyprparser = "0.1.2"
// main.rs
use hyprparser::parse_config;
use std::{env, fs, path::Path};
fn main() {
let config_path = Path::new(&env::var("XDG_CONFIG_HOME").unwrap_or_else(|_| {
let home = env::var("HOME").unwrap_or_else(|_| ".".to_string());
format!("{}/.config", home)
}))
.join("hypr/hyprland.conf");
let config_str = fs::read_to_string(&config_path).unwrap();
let mut parsed_config = parse_config(&config_str);
parsed_config.add_entry("decoration", "rounding = 10");
parsed_config.add_entry("decoration.blur", "enabled = true");
parsed_config.add_entry("decoration.blur", "size = 10");
parsed_config.add_entry_headless("$terminal", "kitty");
let updated_config_str = parsed_config.to_string();
fs::write(&config_path, updated_config_str).unwrap();
println!("Updated hyprland.conf with new configuration.");
}
TODO
- Color formatting tests
Credits
- Nyx - The parser (everything), HyprGUI
- Adam - Code optimization, unit tests, documentation updates, HyprGUI
- Vaxry - Hyprland
- Hyprland - The window manager