refactor: default the icon theme to Cosmic
This commit is contained in:
parent
984d545546
commit
4903d7792e
2 changed files with 2 additions and 2 deletions
|
|
@ -80,7 +80,7 @@ impl Default for Settings {
|
||||||
client_decorations: true,
|
client_decorations: true,
|
||||||
debug: false,
|
debug: false,
|
||||||
default_font: font::FONT,
|
default_font: font::FONT,
|
||||||
default_icon_theme: Some(String::from("Pop")),
|
default_icon_theme: Some(String::from("Cosmic")),
|
||||||
default_text_size: 14.0,
|
default_text_size: 14.0,
|
||||||
resizable: Some(8.0),
|
resizable: Some(8.0),
|
||||||
scale_factor: std::env::var("COSMIC_SCALE")
|
scale_factor: std::env::var("COSMIC_SCALE")
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ use std::cell::RefCell;
|
||||||
|
|
||||||
thread_local! {
|
thread_local! {
|
||||||
/// The fallback icon theme to search if no icon theme was specified.
|
/// 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.
|
/// The fallback icon theme to search if no icon theme was specified.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue