diff --git a/komorebi/src/lib.rs b/komorebi/src/lib.rs index b6c226a2..59b93b74 100644 --- a/komorebi/src/lib.rs +++ b/komorebi/src/lib.rs @@ -182,7 +182,7 @@ lazy_static! { static ref TCP_CONNECTIONS: Arc>> = Arc::new(Mutex::new(HashMap::new())); static ref HIDING_BEHAVIOUR: Arc> = - Arc::new(Mutex::new(HidingBehaviour::Minimize)); + Arc::new(Mutex::new(HidingBehaviour::Cloak)); pub static ref HOME_DIR: PathBuf = { std::env::var("KOMOREBI_CONFIG_HOME").map_or_else(|_| dirs::home_dir().expect("there is no home directory"), |home_path| { let home = PathBuf::from(&home_path);