1
0
Files
dotfiles/autoload/kwin-get-class.nu
2025-06-05 23:54:58 +02:00

10 lines
237 B
Nu

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
}