blob: 000a176d5861a3212c4183899052752fbe64b71c (
plain) (
blame)
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
81
82
83
84
85
86
87
88
89
90
91
92
|
#!/usr/bin/env python
#
# Qtile window switcher for Wayland only
#
# Justine Smithies - 2021
#
# Requirements are: qtile running under Wayland and fuzzel-git
import subprocess
import os
import re
from libqtile.command.client import InteractiveCommandClient
client = InteractiveCommandClient()
windows = client.windows()
# Get the number of open windows
lines = (len(windows))
x = 0
names = []
ids = []
groups = []
appids = []
while x < lines:
# client.window[window_id].focus() etc
win = windows[x]
name = win.get("name")
names.append(name)
id = win.get("id")
ids.append(id)
group = win.get("group")
groups.append(group)
appid = win.get("wm_class")[0]
appids.append(appid)
print(name, id, group, appid)
x += 1
print(windows)
# Reverse the tuples
ids = ids[::-1]
groups = groups[::-1]
names = names[::-1]
appids = appids[::-1]
# Combine all the information into a string to be piped through rofi -dmenu
d = dict(os.environ)
outputs = []
output = []
icon = []
x = 0
print(lines)
while x < lines:
id = ids[x]
id = str(id)
appid = (appids[x]).strip('\n')
name = names[x]
# If name is > 40 characters then shorten it to max 40 and append ...
if len(name) > 40:
name = name[:40] + '...'
group = groups[x]
# Hacky fix to get correct icon for appids that begin with org.
if 'org.' in appid:
icon = appid.split(".")
icon = str(icon[2].lower())
else:
icon = appid
output = ' ' + appid + ' - ' + name + ' on group: ' + group + ' (' + id + ')' + r'\0icon\x1f' + icon + '\n'
outputs.append(str(output))
x += 1
outputs = ''.join(outputs)
# Remove last blank line
outputs = os.linesep.join([s for s in outputs.splitlines() if s])
print(outputs)
# Send options to rofi
d["OPTIONS"] = outputs
d["LINES"] = str(lines)
result = subprocess.Popen('echo -e "$OPTIONS" | fuzzel -d -w 100 -l $LINES', shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=d)
# Get selected option and process
selected_option = str(result.communicate())
print(selected_option)
# Search for the content between the last set of brackets
selected_option = re.sub('^.*\((.*?)\)[^\(]*$', '\g<1>', selected_option)
print(selected_option)
if True in [char.isdigit() for char in selected_option]:
selected_option = int(selected_option)
client.window[selected_option].group.toscreen()
client.window[selected_option].focus()
exit()
else:
exit()
|