https://bugs.kde.org/show_bug.cgi?id=502940
--- Comment #1 from Pavel Urusov <pavel.uru...@gmail.com> --- Sorry for the typo in the script, this is the version that works: const windowStack = []; for (let i = 0; i < workspace.stackingOrder.length; i++) { let w = workspace.stackingOrder[i]; if (w.resourceClass == 'plasmashell' || w.resourceClass == 'xwaylandvideobridge') { continue; } windowStack.push(w); } for (let i = 0; i < windowStack.length; i++) { print(windowStack[i].resourceClass); } -- You are receiving this mail because: You are watching all bug changes.