ดึงข้อมูลเกี่ยวกับสถานะหน้าต่าง
คุณสามารถรับข้อมูล (และอีกมากมาย) จากคำสั่ง:
xprop -id <window_id>
เพื่อให้ได้สิ่งที่คุณกำลังมองหาโดยเฉพาะ:
xprop -id 0x04c00010 | grep "_NET_WM_STATE(ATOM)"
ผลลัพธ์จะมีลักษณะดังนี้:
_NET_WM_STATE(ATOM) = _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_VERT, _NET_WM_STATE_HIDDEN
บนหน้าต่างที่ขยายใหญ่สุด (h + v) และย่อเล็กสุดในเวลาเดียวกันหรือเพียงแค่
_NET_WM_STATE(ATOM) =
(หรือไม่มีเอาต์พุตเลย) หากไม่มีในกรณีนี้
สนุกมาก
แน่นอนว่าการใช้ภาษาต่าง ๆ คุณสามารถใช้Wnckได้เช่นเดียวกับตัวอย่างงูหลามด้านล่าง (ตัวอย่างข้อมูลจากตัวแบ่งหน้าต่าง ) ตัวอย่างข้อมูลออกรายการโดยแสดงชื่อหน้าต่าง + อย่างใดอย่างหนึ่งTrue
หรือFalse
(ย่อเล็กสุด)
#!/usr/bin/env python3
import gi
gi.require_version('Wnck', '3.0')
from gi.repository import Wnck
def get_winlist(scr=None, selecttype=None):
"""
get the window list. possible args: screen, select_type, in case it is
already fetched elsewhere. select type is optional, to fetch only
specific window types.
"""
if not scr:
scr = Wnck.Screen.get_default()
scr.force_update()
windows = scr.get_windows()
if selecttype:
windows = [w for w in windows if check_windowtype(w, selecttype)]
return windows
wlist = get_winlist()
for w in wlist:
print(w.get_name(), ",", w.is_maximized())
ผลลัพธ์ดูเหมือนว่า:
Wnck.Window - Classes - Wnck 3.0 - Mozilla Firefox , True
Postvak IN - vlijm@planet.nl - Mozilla Thunderbird , True
Showtime , False
settingsexample.vala - Visual Studio Code , False
*Niet-opgeslagen document 1 - gedit , False
desktop_weather , False
Tilix: Standaard , False
NB
devilspie
ว่าหน้าต่างใดที่ถูกออกแบบมาเพื่อทำงานหน้าต่างชนิดนี้อย่างแท้จริง ดังนั้นไม่จำเป็นต้องทำการถอดรหัสใหม่เพียงกำหนดค่า