feat(config): add icon theme property to CosmicTk config

This commit is contained in:
Michael Aaron Murphy 2024-03-18 15:49:01 +01:00 committed by Jeremy Soller
parent 3694304ee5
commit 4154428a63
5 changed files with 24 additions and 5 deletions

View file

@ -17,6 +17,9 @@ pub struct CosmicTk {
/// Show maximize button in window header.
pub show_maximize: bool,
/// Preferred icon theme
pub icon_theme: String,
}
impl Default for CosmicTk {
@ -24,6 +27,7 @@ impl Default for CosmicTk {
Self {
show_minimize: true,
show_maximize: true,
icon_theme: String::from("Cosmic"),
}
}
}