Skip to content

Instantly share code, notes, and snippets.

@mgalgs
Created December 7, 2019 00:13
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgalgs/8c1dd50fe3c19a1719fb2ecd012c4edd to your computer and use it in GitHub Desktop.
Save mgalgs/8c1dd50fe3c19a1719fb2ecd012c4edd to your computer and use it in GitHub Desktop.
python-xlib example that prints the bbox of the currently active window
# Print the name and bounding box (x1, y1, x2, y2) for the active window in
# a loop.
import time
from collections import namedtuple
import Xlib
import Xlib.display
disp = Xlib.display.Display()
root = disp.screen().root
NET_ACTIVE_WINDOW = disp.intern_atom('_NET_ACTIVE_WINDOW')
MyGeom = namedtuple('MyGeom', 'x y height width')
def get_active_window():
win_id = root.get_full_property(NET_ACTIVE_WINDOW,
Xlib.X.AnyPropertyType).value[0]
try:
return disp.create_resource_object('window', win_id)
except Xlib.error.XError:
pass
def get_absolute_geometry(win):
"""
Returns the (x, y, height, width) of a window relative to the top-left
of the screen.
"""
geom = win.get_geometry()
(x, y) = (geom.x, geom.y)
while True:
parent = win.query_tree().parent
pgeom = parent.get_geometry()
x += pgeom.x
y += pgeom.y
if parent.id == root.id:
break
win = parent
return MyGeom(x, y, geom.height, geom.width)
def get_window_bbox(win):
"""
Returns (x1, y1, x2, y2) relative to the top-left of the screen.
"""
geom = get_absolute_geometry(win)
x1 = geom.x
y1 = geom.y
x2 = x1 + geom.width
y2 = y1 + geom.height
return (x1, y1, x2, y2)
def main():
while True:
# Protect against races when the window gets destroyed before we
# have a chance to use it. Guessing there's a way to lock access
# to the resource, but for this demo we're just punting. Good
# enough for who it's for.
try:
win = get_active_window()
print(win.get_wm_name(), get_window_bbox(win))
except Xlib.error.BadWindow:
print("Window vanished")
time.sleep(1)
if __name__ == "__main__":
main()
@WinEunuuchs2Unix
Copy link

This is the easiest to understand, most useful introduction to python-xlib I've come across in my last few days of searching. Additionally you've introduced me to namedtuples which I could have used last year when I started my first python program. Kudos!

@mgalgs
Copy link
Author

mgalgs commented Jun 26, 2021

@WinEunuuchs2Unix haha glad it's useful! Yeah I haven't touched this since I wrote it but I remember not being super happy about the documentation situation of python-xlib 😭

@ajgringo619
Copy link

Thank you so much for this!!! I've been searching for a week trying to find a Pythonic replacement for xdotool getactivewindow getwindowgeometry --shell; this was the last step in ridding my script of subshells.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment