From bad8837d19e3e461f03fed30c54e3c954ebef19d Mon Sep 17 00:00:00 2001 From: Richard Weber Date: Tue, 13 Aug 2024 10:45:03 +0300 Subject: [PATCH] Add wl-clipboard to tiling exceptions --- src/shell/layout/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shell/layout/mod.rs b/src/shell/layout/mod.rs index 2e1a2b58..17039710 100644 --- a/src/shell/layout/mod.rs +++ b/src/shell/layout/mod.rs @@ -47,6 +47,7 @@ lazy_static::lazy_static! { r"tilda", r"zoom", r"^.*?action=join.*$", + r"", ]).unwrap(); static ref EXCEPTIONS_TITLE: RegexSet = RegexSet::new(&[ r".*", @@ -81,6 +82,7 @@ lazy_static::lazy_static! { r".*", r".*", r".*", + r"wl-clipboard", ]).unwrap(); }