diff options
| author | Ja.KooLit <jimmielovejay@gmail.com> | 2024-05-05 17:35:04 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-05 17:35:04 +0900 |
| commit | cb39aa6659e579738767301e17104f8e1a1fcfd5 (patch) | |
| tree | 31c81f102dc6e2c03117219222f97c3eb2b62c21 /config | |
| parent | 233e01bfc15cb3b5ad0c1fe750b9d2468b73e1dc (diff) | |
| parent | c6378dfa61981eaeecf73acc044a5ef54b764d4b (diff) | |
Merge pull request #237 from SherLock707/experimental-ags
Ignoring dropterm in ags overview
Diffstat (limited to 'config')
| -rw-r--r-- | config/ags/modules/overview/overview_hyprland.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ags/modules/overview/overview_hyprland.js b/config/ags/modules/overview/overview_hyprland.js index 7a5b55c7..034d6c81 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; |
