1
0

Added kwin-get-class

This commit is contained in:
2025-06-10 11:30:43 +02:00
parent 01035f61bd
commit 283b4f0e56

View File

@@ -0,0 +1,9 @@
export def lumen-kwin-get-class [waittimesec = int]: nothing -> nothing {
mut timer = ($waittimesec | into int)
while ($timer > 0) {
$timer | print
$timer -= 1
sleep 1sec
}
qdbus6 org.kde.KWin /KWin queryWindowInfo
}