hyprshell_config_lib/style/structs.rs
1use std::path::PathBuf;
2
3#[derive(Debug)]
4pub struct Theme {
5 pub name: String,
6 pub path: PathBuf,
7 pub style: String,
8 pub image_path: Option<PathBuf>,
9 pub data: ThemeData,
10 pub is_current: bool,
11}
12
13#[derive(Debug)]
14pub struct ThemeData {
15 pub name: String,
16 pub description: String,
17 pub experimental: bool,
18}