Skip to content

Commit fcdd1c5

Browse files
committed
a note regarding keepAbove/Below for fullscreen
KWin currently keeps fullscreen windows on the top, regardless of keepAbove/Below settings. I initially wanted to allow other tiled windows to appear when user switches out of fullscreen windows, but, since KWin ignores those values, it's impossible to show other windows over fullscreen windows.
1 parent 2c8bee7 commit fcdd1c5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/engine.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ class TilingEngine {
8787

8888
visibles.forEach((tile) => {
8989
if (this.driver.isClientFullScreen(tile.client)) {
90+
/* NOTE: kwin keeps fullscreen windows on the top anyway. */
9091
tile.client.keepAbove = false;
9192
tile.client.keepBelow = false;
9293
} else if (tile.floating) {

0 commit comments

Comments
 (0)