dreamcat4 / skippy-xd

A full-screen Exposé-style standalone task switcher for X11.
GNU General Public License v2.0
99 stars 12 forks source link

[request] show hidden/minimized/iconified windows #15

Closed biopsin closed 1 year ago

biopsin commented 4 years ago

Hi, first thank you for maintaining skippy-xd. I'm wondering if someone have being pondering on it :) The work around : https://github.com/hotice/webupd8/blob/master/skippy-xd-fix

ghost commented 3 years ago

yes this would be a great improvement

vredesbyyrd commented 3 years ago

@biopsin

Hi, thanks for the workaround. Does step 7 (minimize hidden windows unless selected) laid out in the script work for you? I have hacked on it a bit without success. On 2bwm btw.

biopsin commented 3 years ago

@vredesbyyrd probably why 2bwm TODO: Extended Window Manager Hints (EWMH)

vredesbyyrd commented 3 years ago

@biopsin

thanks, dont know how I missed that. I got around the issue by changing step 7 in the script to:

#7.
hidden=${hidden/$SkippySelected}
for item in $hidden; do
  xdotool windowactivate $item
  xdotool windowminimize $item
done

First focusing/activating the window seemed to "fix" it.