hyprshell-config-lib 4.10.2

A library for reading, writing and migrating configuration files for hyprshell
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::path::PathBuf;

#[derive(Debug)]
pub struct Theme {
    pub name: String,
    pub path: PathBuf,
    pub style: String,
    pub image_path: Option<PathBuf>,
    pub data: ThemeData,
    pub is_current: bool,
}

#[derive(Debug)]
pub struct ThemeData {
    pub name: String,
    pub description: String,
    pub experimental: bool,
}