From c6378dfa61981eaeecf73acc044a5ef54b764d4b Mon Sep 17 00:00:00 2001 From: Kiran George Date: Sun, 5 May 2024 12:37:30 +0530 Subject: [PATCH] Ignoring dropterm in ags overview --- config/ags/modules/overview/overview_hyprland.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/ags/modules/overview/overview_hyprland.js b/config/ags/modules/overview/overview_hyprland.js index 7a5b55c..034d6c8 100644 --- a/config/ags/modules/overview/overview_hyprland.js +++ b/config/ags/modules/overview/overview_hyprland.js @@ -52,7 +52,7 @@ export default () => { const Window = ({ address, at: [x, y], size: [w, h], workspace: { id, name }, class: c, title, xwayland }, screenCoords) => { const revealInfoCondition = (Math.min(w, h) * userOptions.overview.scale > 70); - if (w <= 0 || h <= 0 || (c === '' && title === '')) return null; + if (w <= 0 || h <= 0 || (c === '' && title === '') || c.endsWith('-dropterm')) return null; // Non-primary monitors if (screenCoords.x != 0) x -= screenCoords.x; if (screenCoords.y != 0) y -= screenCoords.y;