https://bugs.kde.org/show_bug.cgi?id=362711
--- Comment #4 from Thomas Lübking <thomas.luebk...@gmail.com> --- firefox is a shellscript, calling the actual binary (usually in /usr/lib, /usr/lib/firefox/firefox-bin ?) you can use xdotool to search window IDs or list them all w/ "xwininfo -root -tree" for "offline" inspection, you'll require remote access (ssh), so you can inspect the system w/o altering the state The alternative would be sth. like sleep 20; xev -event keyboard -id `xdotool search -onlyvisible -class firefox` | grep state to program the inspection before causing the situation. (no guarantee that the search will find exactly one window, better check that w/ FF running) -- You are receiving this mail because: You are watching all bug changes.