Hello there,
I wrote a small perlscript, which uses the Tracker::Windowlist to get a
windowlist. But unfortunately I don't see a way to ignore those
windows that have the WindowListSkip-Flag set.
I tried:
my $tracker = $module->track("WindowList");
my @windows = $tracker->windows;
foreach my $window ($tracker->windows) {
...
and
my $tracker = $module->track("WindowList", "!stack !icons names winfo");
my $data = $tracker->data;
while (my ($winId, $window) = each %$data) {
...
But both variants show these windows. Has anyone a hint for me to
ignore windows using that flag? I hope it isn't too obvious, but the
perllib-documentation isn't that detailed.
Thanks in advance
Marcel Linden