Add wl-clipboard to tiling exceptions

This commit is contained in:
Richard Weber 2024-08-13 10:45:03 +03:00 committed by Victoria Brekenfeld
parent 0916d3599a
commit bad8837d19

View file

@ -47,6 +47,7 @@ lazy_static::lazy_static! {
r"tilda", r"tilda",
r"zoom", r"zoom",
r"^.*?action=join.*$", r"^.*?action=join.*$",
r"",
]).unwrap(); ]).unwrap();
static ref EXCEPTIONS_TITLE: RegexSet = RegexSet::new(&[ static ref EXCEPTIONS_TITLE: RegexSet = RegexSet::new(&[
r".*", r".*",
@ -81,6 +82,7 @@ lazy_static::lazy_static! {
r".*", r".*",
r".*", r".*",
r".*", r".*",
r"wl-clipboard",
]).unwrap(); ]).unwrap();
} }