10 lines
222 B
Nu
10 lines
222 B
Nu
export def lumen-kwin-get-class [waittimesec: int]: nothing -> string {
|
|
mut timer = $waittimesec
|
|
while ($timer > 0) {
|
|
$timer | print
|
|
$timer -= 1
|
|
sleep 1sec
|
|
}
|
|
qdbus6 org.kde.KWin /KWin queryWindowInfo
|
|
}
|