Settings panel ui

This commit is contained in:
2024-11-15 14:58:09 +02:00
parent a060161c64
commit b29caa58b4
10 changed files with 132 additions and 68 deletions

View File

@@ -2,7 +2,7 @@ use std::{path::PathBuf, sync::{Arc, Mutex, MutexGuard}};
use serde::{Deserialize, Serialize};
use theme::Theme;
mod theme;
pub mod theme;
lazy_static::lazy_static!(
static ref SETTINGS: Arc<Mutex<Settings>> = Arc::new(Mutex::new(Settings::default()));