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

@ -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.