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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
import os
import subprocess
import socket
from libqtile import layout, bar, widget, hook
from libqtile.config import Group, Screen
from libqtile.dgroups import simple_key_binder
from libqtile.config import Key, KeyChord
from libqtile.command import lazy
from libqtile.config import Click, Drag
from colors import dracula
hostname = socket.gethostname()
groups = []
group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0", ]
group_labels = ["Ⅰ", "Ⅱ", "Ⅲ", "Ⅳ", "Ⅴ", "Ⅵ", "Ⅶ", "Ⅷ", "Ⅸ", "Ⅹ", ]
group_layouts = ["monadtall", "monadtall", "monadtall", "monadtall",
"monadtall", "monadtall", "monadtall", "monadtall",
"monadtall", "monadtall", ]
for i in range(len(group_names)):
groups.append(
Group(name=group_names[i],
layout=group_layouts[i].lower(),
label=group_labels[i],))
def init_layout_theme():
"""Layout default theme."""
return {"margin": 5,
"border_width": 2,
"border_focus": dracula["cyan"],
"border_normal": dracula["bg"],
}
@hook.subscribe.startup_once
def autostart():
autostart_script = os.path.expanduser('~/.config/autostart/autostart.sh')
subprocess.Popen([autostart_script])
layout_theme = init_layout_theme()
layouts = [
layout.MonadTall(**layout_theme),
layout.Floating(**layout_theme),
]
@hook.subscribe.client_new
def float_my_app(window):
if window.window.get_name() == "thanos/pass-launcher":
window.floating = True
# Widgets
def init_widgets_defaults():
"""Set widget default settings."""
return dict(font="JetBrains Mono",
fontsize=14,
padding=2,
foreground=dracula["fg"],
background=dracula["bg"]
)
widget_defaults = init_widgets_defaults()
def init_widgets_list():
"""My widget list."""
widgets_list = [
widget.Spacer(length=7),
widget.Image(
filename="~/.config/qtile/Gentoo2.png",
scale="True",
margin=2,),
widget.Spacer(length=7,),
widget.GroupBox(
font="FontAwesome",
fontsize=20,
padding=3,
margin=4,
borderwidth=1,
active=dracula["cyan"],
inactive=dracula["curr"],
rounded=False,
highlight_method="line",
this_current_screen_border=dracula["red"],
other_current_screen_border=dracula["curr"],),
widget.CurrentLayout(
font="Noto Sans Bold",
foreground=dracula["fg"],
background="#5B4B8A",),
widget.Spacer(length=5),
widget.WindowName(
font="JetBrains Mono Bold",
fontsize=12,
foreground=dracula["green"],
background=dracula["bg"],),
widget.Spacer(length=10,),
widget.Image(
filename="~/.config/qtile/volume1.png",
scale=True,),
widget.Spacer(length=7, padding=10,),
widget.Volume(
fontsize=15,
fmt='{} ',
background=dracula["bg"],
foreground=dracula['orange'],
font="JetBrains Mono",
margin=10,),
widget.Spacer(length=7,padding=10,),
widget.Image(
filename="~/.config/qtile/ram2.png",
scale=True,),
widget.Memory(
measure_mem="G",
fontsize=15,
foreground=dracula["cyan"],
background=dracula["bg"],
font='JetBrains Mono Bold',),
widget.MemoryGraph(
type='box',
graph_color=dracula["cyan"],
foreground=dracula["fg"],
background=dracula["bg"],),
widget.Spacer(length=7),
widget.Image(filename="~/.config/qtile/cpu1.png", scale=True,),
widget.ThermalSensor(
threshold=50,
fontsize=15,
font='JetBrains Mono Bold',
foreground=dracula["cyan"],
background=dracula["bg"],),
widget.CPUGraph(
type='box',
graph_color=dracula["cyan"],
background=dracula["bg"],),
widget.Spacer(length=5),
widget.TextBox(
font="FontAwesome",
text=" ",
foreground=dracula["orange"],
background=dracula["bg"],
padding=2,
fontsize=18),
widget.Clock(
font='JetBrains Mono Bold',
foreground=dracula["cyan"],
background=dracula["bg"],
fontsize=16,
format="%A %d/%m | %H:%M"),
widget.Spacer(length=6),
widget.Systray(background=dracula["bg"],
icon_size=20,
padding=10,
margin=10,),
widget.Spacer(length=5),
]
return widgets_list
battery_widget = widget.Battery(format='{char} {percent:2.0%} {hour:d}:{min:02d} ', font='Jetbrains Mono')
widgets_list = init_widgets_list()
def init_widgets_screen1():
"""Init every widget for primary screen."""
widgets_screen1 = init_widgets_list()
if hostname == "hermes":
widgets_screen1.append(battery_widget)
return widgets_screen1
def init_widgets_screen2():
"""Remove systray and spacer for second screen."""
widgets_screen2 = init_widgets_list()
return widgets_screen2[:-2]
widgets_screen1 = init_widgets_screen1()
widgets_screen2 = init_widgets_screen2()
def init_screens():
"""Panel settings."""
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), size=33,
margin=11),),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), size=28,
margin=7))]
screens = init_screens()
follow_mouse_focus = True
bring_front_click = False
cursor_warp = True
auto_fullscreen = True
focus_on_window_activation = "smart" # or focus
wmname = "Qtile-Apo11o"
## Keys
# Use this to change between workspaces
dgroups_key_binder = simple_key_binder("mod4")
mod = "mod4"
browser = "firefox"
keys = [
Key([mod],"Return",lazy.spawn("emacsclient -c"),),
Key([mod,"shift"],"m",lazy.spawn("emacsclient -e '(thanos/pass-launcher)'"),),
Key([mod],"r",lazy.spawn("rofi -show drun -modi drun -show-icons"),),
Key([mod, "shift"], "l", lazy.spawn("slock")),
Key([mod,"shift"],"c",lazy.next_layout(),),
Key([mod],"q",lazy.window.kill(),),
Key([mod,"shift"],"r",lazy.restart(),),
Key([mod,"shift"], "d", lazy.spawn("emacs --daemon")),
Key([mod,"shift"], "e", lazy.spawn("emacs")),
# Switch focus of monitors
Key([mod],"period",lazy.next_screen(),),
# Treetab controls
Key([mod,"shift"],"b",lazy.layout.move_left(),),
Key([mod,"shift"],"f",lazy.layout.move_right(),),
# Window controls
Key([mod],"n",lazy.layout.down(),),
Key([mod],"p",lazy.layout.up(),),
Key([mod,"shift"],"n",lazy.layout.shuffle_down(),lazy.layout.section_down(),),
Key([mod,"shift"],"p",lazy.layout.shuffle_up(),lazy.layout.section_up(),),
Key([mod],"s",lazy.layout.shrink(),lazy.layout.decrease_nmaster(),),
Key([mod],"l",lazy.layout.grow(),lazy.layout.increase_nmaster(),),
Key([mod],"o",lazy.layout.normalize(),),
Key([mod],"m",lazy.layout.maximize(),),
Key([mod,"shift"],"f",lazy.window.toggle_floating(),),
Key([mod],"f",lazy.window.toggle_fullscreen(),),
# Stack controls
Key([mod,"shift"],"Tab",lazy.layout.rotate(),lazy.layout.flip(),),
Key([mod,"shift"],"space", lazy.layout.toggle_split(),),
# Volume controls
Key([],"XF86AudioLowerVolume",lazy.spawn("amixer sset Master 5%-")),
Key([],"XF86AudioRaiseVolume",lazy.spawn("amixer sset Master 5%+")),
# Keyboard
Key([],"F9", lazy.spawn("setxkbmap gr -option ctrl:swapcas")),
Key([],"F10", lazy.spawn("setxkbmap us -option ctrl:swapcaps")),
# Thinkpad
Key([],"F1", lazy.spawn("doas brightnessctl --device='intel_backlight' set 5%-")),
Key([],"F2", lazy.spawn("doas brightnessctl --device='intel_backlight' set +5%")),
Key([],"F4", (lazy.spawn("doas /home/thanos/.scripts/keyboard-light-x220.sh")))
]
mouse = [
Drag([mod],"Button1", lazy.window.set_position_floating(),
start=lazy.window.get_position()),
Drag([mod],"Button3", lazy.window.set_size_floating(),
start=lazy.window.get_size()),
Click([mod],"Button2",
lazy.window.bring_to_front()),
]
|