use std::fs; use toml::Table; use crate::BOOT; pub(crate) struct Preset; impl Preset { fn merge(a: &mut Table, b: &Table, max: u8) { for (k, v) in b { let Some(a) = a.get_mut(k) else { a.insert(k.clone(), v.clone()); continue; }; if k == "icons" || max <= 1 { continue; } if let Some(a) = a.as_table_mut() { if let Some(b) = v.as_table() { Self::merge(a, b, max - 1); continue; } } *a = v.clone(); } } fn merge_str(user: &str, base: &str) -> String { let path = BOOT.config_dir.join(user); let mut user = fs::read_to_string(path).unwrap_or_default().parse::