From 4903d7792ea4e1952d123e8f9b540ca89a834418 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Tue, 29 Aug 2023 15:01:56 -0400 Subject: [PATCH] refactor: default the icon theme to Cosmic --- src/app/settings.rs | 2 +- src/icon_theme.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/settings.rs b/src/app/settings.rs index 77dcb633f26..99ab8de6716 100644 --- a/src/app/settings.rs +++ b/src/app/settings.rs @@ -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") diff --git a/src/icon_theme.rs b/src/icon_theme.rs index f426ae7f1c8..4a25d61504c 100644 --- a/src/icon_theme.rs +++ b/src/icon_theme.rs @@ -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 = RefCell::new(String::from("Pop")); + pub(crate) static DEFAULT: RefCell = RefCell::new(String::from("Cosmic")); } /// The fallback icon theme to search if no icon theme was specified.