Skip to content

Commit

Permalink
refactor: default the icon theme to Cosmic
Browse files Browse the repository at this point in the history
  • Loading branch information
wash2 committed Aug 29, 2023
1 parent 984d545 commit 4903d77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion src/icon_theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4903d77

Please sign in to comment.