blob: 06f246d0cbfef3189136576b4839088ecd813bbc (
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
|
#!/usr/bin/env python3
import re
import subprocess as sp
def get_window_title() -> str:
command = ["xdotool", "getactivewindow", "getwindowname"]
ret = sp.run(command, capture_output=True)
return ret.stdout.decode("utf-8")[:-1]
def launch_term(command=None, directory=None):
run = ["i3-sensible-terminal"]
if command:
run.extend(["-e", command])
if directory:
run.extend(["-d", directory])
print("Running:", run)
sp.run(run)
def decide_and_run(title: str):
print(title)
if title.startswith("fish "):
launch_term(directory=title[5:])
elif (m := re.search(".*client\d*@\[(\d*)\] - Kakoune", title)):
id = m.group(1)
launch_term(command=f"kak -c {id}")
if __name__ == "__main__":
title = get_window_title()
decide_and_run(title)
|