-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathi3-debug-console.py
executable file
·80 lines (55 loc) · 1.38 KB
/
i3-debug-console.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python3
import i3ipc
from curses import wrapper
def con_type_to_text(con):
if con.type != 'con':
return con.type
if len(con.nodes):
return 'container'
else:
return 'view'
def layout_txt(con):
if con.layout == 'splith':
return 'HORIZ'
elif con.layout == 'splitv':
return 'VERT'
else:
return ''
def container_to_text(con, indent):
t = con_type_to_text(con)
txt = (' ' * indent) + '('
txt += t + ' ' + layout_txt(con)
if con.focused:
txt += ' focus'
has_children = len(con.nodes)
for c in con.nodes:
txt += '\n'
txt += container_to_text(c, indent + 4)
if has_children:
txt += '\n' + (' ' * indent)
txt += ')'
return txt
last_txt = ''
def main(stdscr):
ipc = i3ipc.Connection()
def on_event(ipc, e):
txt = ''
for ws in ipc.get_tree().workspaces():
txt += container_to_text(ws, 0) + '\n'
global last_txt
if txt == last_txt:
return
stdscr.clear()
for l in txt:
try:
stdscr.addstr(l)
except Exception:
break
stdscr.refresh()
last_txt = txt
on_event(ipc, None)
ipc.on('window', on_event)
ipc.on('binding', on_event)
ipc.on('workspace', on_event)
ipc.main()
wrapper(main)