Skip to content

Commit

Permalink
change defaults
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Brue <[email protected]>
  • Loading branch information
ryanabx committed Aug 22, 2024
1 parent b938d77 commit 391cd90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
6 changes: 1 addition & 5 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()],
}
}
}
5 changes: 1 addition & 4 deletions src/settings_tray/clock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 391cd90

Please sign in to comment.