GNU/Linux >> Tutoriels Linux >  >> Linux

Obtenir le titre de la fenêtre actuelle avec Python et Xorg

MODIFIER

meilleur moyen :

import gtk
import wnck
import glib

class WindowTitle(object):
    def __init__(self):
        self.title = None
        glib.timeout_add(100, self.get_title)

    def get_title(self):
        try:
            title = wnck.screen_get_default().get_active_window().get_name()
            if self.title != title:
                self.title  = title
                print title
        except AttributeError:
            pass
        return True

WindowTitle()
gtk.main()

Manière alternative :

from subprocess import PIPE, Popen
import time

title = ''
root_check = ''

while True:
    time.sleep(0.6)
    root = Popen(['xprop', '-root'],  stdout=PIPE)

    if root.stdout != root_check:
        root_check = root.stdout

        for i in root.stdout:
            if '_NET_ACTIVE_WINDOW(WINDOW):' in i:
                id_ = i.split()[4]
                id_w = Popen(['xprop', '-id', id_], stdout=PIPE)

        for j in id_w.stdout:
            if 'WM_ICON_NAME(STRING)' in j:
                if title != j.split()[2]:
                    title = j.split()[2]
                    print "current window title: %s" % title

J'ai remarqué que wnck nécessite une boucle d'événement GTK pour mettre à jour la fenêtre active. Il n'y a pas ce problème avec Xlib :

import Xlib
import Xlib.display
disp = Xlib.display.Display()
window = disp.get_input_focus().focus

# Get active window class and name
window.get_wm_class()
window.get_wm_name()

La solution basée sur xprop de killown peut être compactée en une seule (bien que longue) déclaration :

import subprocess
def GetActiveWindowTitle():
    return subprocess.Popen(["xprop", "-id", subprocess.Popen(["xprop", "-root", "_NET_ACTIVE_WINDOW"], stdout=subprocess.PIPE).communicate()[0].strip().split()[-1], "WM_NAME"], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0].strip().split('"', 1)[-1][:-1]

Linux
  1. Comment compiler et installer Python avec le support OpenSSL ?

  2. Démarrer avec GlusterFS - considérations et installation

  3. Utilisation de la commande `date` pour obtenir le mois précédent, actuel et suivant

  4. Titre de l'application Qt

  5. Android - X Window avec GNURoot

Comment installer et démarrer avec Git sur Mac

Comment obtenir la date et l'heure actuelles en Python

Apprenez à détecter les équipements réseau avec Scientific Linux 7.1 et Python

Démarrer avec GNUPlot

Comment installer Nginx avec Lets encrypt et obtenir A+ de SSLLabs Test

Obtenir les détails du système et du matériel avec uname et lscpu sur Debian