diff --git a/src/config.rs b/src/config.rs index 7a9e4b2..bf6a3fb 100644 --- a/src/config.rs +++ b/src/config.rs @@ -51,11 +51,7 @@ pub struct AppTrayConfig { impl<'a> Default for AppTrayConfig { fn default() -> Self { Self { - favorites: vec![ - "com.system76.CosmicTerm".to_string(), - "org.mozilla.firefox".to_string(), - "org.kde.discover".to_string(), - ], + favorites: vec!["org.mozilla.firefox".to_string()], } } } diff --git a/src/settings_tray/clock.rs b/src/settings_tray/clock.rs index 922eca5..cf2e646 100644 --- a/src/settings_tray/clock.rs +++ b/src/settings_tray/clock.rs @@ -4,10 +4,7 @@ use std::{ }; use chrono::{Local, Timelike, Utc}; -use iced::{ - futures::SinkExt, - widget::column, Command, Length, -}; +use iced::{futures::SinkExt, widget::column, Command, Length}; #[derive(Clone, Debug)] pub enum ClockMessage {