refactor: default the icon theme to Cosmic

This commit is contained in:
Ashley Wulber 2023-08-29 15:01:56 -04:00 committed by Ashley Wulber
parent 984d545546
commit 4903d7792e
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ impl Default for Settings {
client_decorations: true,
debug: false,
default_font: font::FONT,
default_icon_theme: Some(String::from("Pop")),
default_icon_theme: Some(String::from("Cosmic")),
default_text_size: 14.0,
resizable: Some(8.0),
scale_factor: std::env::var("COSMIC_SCALE")

View file

@ -7,7 +7,7 @@ use std::cell::RefCell;
thread_local! {
/// The fallback icon theme to search if no icon theme was specified.
pub(crate) static DEFAULT: RefCell<String> = RefCell::new(String::from("Pop"));
pub(crate) static DEFAULT: RefCell<String> = RefCell::new(String::from("Cosmic"));
}
/// The fallback icon theme to search if no icon theme was specified.