Skip to content

Commit 335d3f1

Browse files
committed
src/config: Add exceptions for wl-clipboard.
wl-clipboard invisible window (literally just a dot shows up) can cause the tiler to make it take an entire window worth of space, and it is supposed to be immediately closed so we see a tiling flicker. And also sometimes the window dangles (there is an open bug for it), so it takes up unnecessary space. This window is not supposed to be tiled, in fact it has skip-taskbar flag set. Let's add exceptions for it. Closes: #1819 Signed-off-by: Siddh Raman Pant <25429745+siddhpant@users.noreply.github.com>
1 parent cfb5ee1 commit 335d3f1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export const DEFAULT_FLOAT_RULES: Array<FloatRule> = [
5959
{ class: 'zoom' },
6060
{ class: '^.*action=join.*$' },
6161
{ class: 'gjs' },
62+
{ class: 'io.github.bugaevc.wl-clipboard' },
6263
];
6364

6465
export interface WindowRule {
@@ -77,6 +78,7 @@ export const SKIPTASKBAR_EXCEPTIONS: Array<WindowRule> = [
7778
{ class: 'Guake' },
7879
{ class: 'Com.github.amezin.ddterm' },
7980
{ class: 'plank' },
81+
{ class: 'io.github.bugaevc.wl-clipboard' },
8082
];
8183

8284
export interface FloatRule {

0 commit comments

Comments
 (0)