aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/i3blocks/.local/bin/i3blocks-title
blob: b8e3213853b9ef751f050e10e5a68b9ac4b725f9 (plain)
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
#!/usr/bin/env python3

import os
from typing import Union

import i3ipc
from i3ipc import Event
from i3ipc.events import WindowEvent, WorkspaceEvent


class Connection(i3ipc.Connection):
    def handle(
        self,
        *events: Union[Event, str],
    ):
        def wrapped(handler):
            for event in events:
                self.on(event, handler)
            return handler

        return wrapped


max_length = int(os.environ.get("max_length", 30))


sway = Connection()


@sway.handle(
    Event.WINDOW_FOCUS,
    Event.WINDOW_TITLE,
    Event.WINDOW_NEW,
    Event.WINDOW_CLOSE,
    Event.WORKSPACE_FOCUS,
)
def on_window_event(sway: i3ipc.Connection, event: WindowEvent | WorkspaceEvent):
    focused = sway.get_tree()
    while focused is not None and focused.ipc_data["type"] != "con":
        focused = focused.find_focused()

    if focused:
        print(focused.ipc_data["name"][:max_length])
    else:
        print("")


if __name__ == "__main__":
    sway.main()