diff --git a/plugins/src/desktop_entries/mod.rs b/plugins/src/desktop_entries/mod.rs index e3910ec..51fd4cf 100644 --- a/plugins/src/desktop_entries/mod.rs +++ b/plugins/src/desktop_entries/mod.rs @@ -107,9 +107,9 @@ impl App { .split(';') .any(|desktop| current.iter().any(|c| *c == desktop)) }) - .unwrap_or(false); + .unwrap_or(true); - if matched { + if matched || entry.name(None).map_or(false, |v| v == "GNOME Shell") { continue; } }