diff --git a/komorebi-core/src/config_generation.rs b/komorebi-core/src/config_generation.rs index abb593c1..6a69a53d 100644 --- a/komorebi-core/src/config_generation.rs +++ b/komorebi-core/src/config_generation.rs @@ -18,6 +18,7 @@ pub enum ApplicationOptions { Layered, TrayAndMultiWindow, Force, + BorderOverflow, } impl ApplicationOptions { @@ -36,6 +37,9 @@ impl ApplicationOptions { ApplicationOptions::Force => { format!("komorebic.exe manage-rule {kind} \"{id}\"") } + ApplicationOptions::BorderOverflow => { + unreachable!("deprecated"); + } } } diff --git a/komorebi/src/static_config.rs b/komorebi/src/static_config.rs index badcf71d..2b8d1116 100644 --- a/komorebi/src/static_config.rs +++ b/komorebi/src/static_config.rs @@ -599,6 +599,7 @@ impl StaticConfig { &mut regex_identifiers, )?; } + ApplicationOptions::BorderOverflow => {} // deprecated } } }