J'ai besoin d'une solution pour obtenir les informations de la fenêtre active (focalisée) sur un bureau Gnome 2. Je suis principalement intéressé par le processus exécutant cette fenêtre et le titre de la fenêtre.
C'est possible?
SOLUTION:
Obtenir le titre de la fenêtre:
xwininfo -root -children | grep $(printf '%x\n' $(xdotool getwindowfocus)) | grep -oEi '"[^"]+"' | head -1
Obtenir le nom du processus:
ps -e | grep $(xdotool getwindowpid $(xdotool getwindowfocus)) | grep -v grep | awk '{print $4}'
ou:
cat /proc/$(xdotool getwindowpid $(xdotool getwindowfocus))/comm