mirror of
https://github.com/yshui/picom.git
synced 2024-10-27 05:24:17 -04:00
31e58712ec
The testcase python files were already compatible with python3, but the shebang was wrongly set to just 'python'
18 lines
492 B
Python
Executable file
18 lines
492 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import xcffib.xproto as xproto
|
|
import xcffib
|
|
|
|
conn = xcffib.connect()
|
|
setup = conn.get_setup()
|
|
root = setup.roots[0].root
|
|
visual = setup.roots[0].root_visual
|
|
depth = setup.roots[0].root_depth
|
|
|
|
wid = conn.generate_id()
|
|
conn.core.CreateWindowChecked(depth, wid, root, 0, 0, 100, 100, 0, xproto.WindowClass.InputOutput, visual, 0, []).check()
|
|
conn.core.MapWindowChecked(wid).check()
|
|
conn.core.UnmapWindowChecked(wid).check()
|
|
conn.core.DestroyWindowChecked(wid).check()
|
|
|
|
|