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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
|
#
# QQQQQQQQQ tttt iiii lllllll
# QQ:::::::::QQ ttt:::t i::::i l:::::l
# QQ:::::::::::::QQ t:::::t iiii l:::::l
# Q:::::::QQQ:::::::Q t:::::t l:::::l
# Q::::::O Q::::::Qttttttt:::::ttttttt iiiiiii l::::l eeeeeeeeeeee
# Q:::::O Q:::::Qt:::::::::::::::::t i:::::i l::::l ee::::::::::::ee
# Q:::::O Q:::::Qt:::::::::::::::::t i::::i l::::l e::::::eeeee:::::ee
# Q:::::O Q:::::Qtttttt:::::::tttttt i::::i l::::l e::::::e e:::::e
# Q:::::O Q:::::Q t:::::t i::::i l::::l e:::::::eeeee::::::e
# Q:::::O Q:::::Q t:::::t i::::i l::::l e:::::::::::::::::e
# Q:::::O QQQQ:::::Q t:::::t i::::i l::::l e::::::eeeeeeeeeee
# Q::::::O Q::::::::Q t:::::t tttttt i::::i l::::l e:::::::e
# Q:::::::QQ::::::::Q t::::::tttt:::::ti::::::il::::::le::::::::e
# QQ::::::::::::::Q tt::::::::::::::ti::::::il::::::l e::::::::eeeeeeee
# QQ:::::::::::Q tt:::::::::::tti::::::il::::::l ee:::::::::::::e
# QQQQQQQQ::::QQ ttttttttttt iiiiiiiillllllll eeeeeeeeeeeeee
# Q:::::Q
# QQQQQQ
# ___ _ _ __ _
# / _ \ | | | / _(_)
# / /_\ \_ __ ___ | | | ___ ___ ___ _ __ | |_ _ __ _
# | _ | '_ \ / _ \| | |/ _ \ / __/ _ \| '_ \| _| |/ _` |
# | | | | |_) | (_) | | | (_) | | (_| (_) | | | | | | | (_| |
# \_| |_/ .__/ \___/|_|_|\___/ \___\___/|_| |_|_| |_|\__, |
# | | __/ |
# |_| |___/
import os
import subprocess
from libqtile import layout, bar, widget, hook
from libqtile.config import Click, Drag, Group, Key, Match, Screen, Rule
from libqtile.command import lazy
from libqtile.widget import Spacer
#mod4 or mod = super key
mod = "mod4"
mod1 = "alt"
mod2 = "control"
image = '~/Pictures/medicine/caduceus-crystal.jpg'
@lazy.function
def window_to_prev_group(qtile):
if qtile.currentWindow is not None:
i = qtile.groups.index(qtile.currentGroup)
qtile.currentWindow.togroup(qtile.groups[i - 1].name)
@lazy.function
def window_to_next_group(qtile):
if qtile.currentWindow is not None:
i = qtile.groups.index(qtile.currentGroup)
qtile.currentWindow.togroup(qtile.groups[i + 1].name)
mod = "mod4" # Sets mod key to SUPER/WINDOWS
myTerm = "alacritty" # My terminal of choice
myBrowser = "qutebrowser" # My browser of choice
keys = [
### The essentials
Key([mod], "Return",
lazy.spawn(myTerm),
desc='Launches My Terminal'
),
Key([mod], "a",
lazy.spawn('anki'),
desc='Launch anki'),
Key([mod], "Tab",
lazy.spawn("dmenu_run -p 'Run: '"),
desc='Run Launcher'
),
Key([mod], "p",
lazy.spawn("passmenu -p 'Password for: '"),
),
Key([mod], "b",
lazy.spawn(myBrowser),
desc='Qutebrowser'
),
Key([mod, "shift"], "c",
lazy.next_layout(),
desc='Toggle through layouts'
),
Key([mod], "q",
lazy.window.kill(),
desc='Kill active window'
),
Key([mod, "shift"], "r",
lazy.restart(),
desc='Restart Qtile'
),
Key([mod, "shift"], "0",
lazy.shutdown(),
desc='Shutdown Qtile'
),
Key([mod, "shift"], "e",
lazy.spawn("emacsclient -c -a 'emacs'"),
desc='Doom Emacs'
),
### Switch focus of monitors
Key([mod], "period",
lazy.next_screen(),
desc='Move focus to next monitor'
),
Key([mod], "comma",
lazy.prev_screen(),
desc='Move focus to prev monitor'
),
### Treetab controls
Key([mod, "shift"], "h",
lazy.layout.move_left(),
desc='Move up a section in treetab'
),
Key([mod, "shift"], "l",
lazy.layout.move_right(),
desc='Move down a section in treetab'
),
### Window controls
Key([mod], "j",
lazy.layout.down(),
desc='Move focus down in current stack pane'
),
Key([mod], "k",
lazy.layout.up(),
desc='Move focus up in current stack pane'
),
Key([mod, "shift"], "j",
lazy.layout.shuffle_down(),
lazy.layout.section_down(),
desc='Move windows down in current stack'
),
Key([mod, "shift"], "k",
lazy.layout.shuffle_up(),
lazy.layout.section_up(),
desc='Move windows up in current stack'
),
Key([mod], "h",
lazy.layout.shrink(),
lazy.layout.decrease_nmaster(),
desc='Shrink window (MonadTall), decrease number in master pane (Tile)'
),
Key([mod], "l",
lazy.layout.grow(),
lazy.layout.increase_nmaster(),
desc='Expand window (MonadTall), increase number in master pane (Tile)'
),
Key([mod], "n",
lazy.layout.normalize(),
desc='normalize window size ratios'
),
Key([mod], "m",
lazy.layout.maximize(),
desc='toggle window between minimum and maximum sizes'
),
Key([mod, "shift"], "f",
lazy.window.toggle_floating(),
desc='toggle floating'
),
Key([mod], "f",
lazy.window.toggle_fullscreen(),
desc='toggle fullscreen'
),
### Stack controls
Key([mod, "shift"], "Tab",
lazy.layout.rotate(),
lazy.layout.flip(),
desc='Switch which side main pane occupies (XmonadTall)'
),
Key([mod, "shift"], "space",
lazy.layout.toggle_split(),
desc='Toggle between split and unsplit sides of stack'
),
### Volume controls
Key([], "XF86AudioLowerVolume",
lazy.spawn('amixer sset Master 5%-'),
desc="Decrease volume"
),
Key([], "XF86AudioRaiseVolume",
lazy.spawn('amixer sset Master 5%+'),
desc="Increase volume"
),
### Change languages
Key([mod], "F1",
lazy.spawn("setxkbmap us"),
desc= "change to US layout"
),
Key([mod],"F2",
lazy.spawn("setxkbmap gr"),
desc= "change to greek layout"
),
]
def window_to_previous_screen(qtile, switch_group=False, switch_screen=False):
i = qtile.screens.index(qtile.current_screen)
if i != 0:
group = qtile.screens[i - 1].group.name
qtile.current_window.togroup(group, switch_group=switch_group)
if switch_screen == True:
qtile.cmd_to_screen(i - 1)
def window_to_next_screen(qtile, switch_group=False, switch_screen=False):
i = qtile.screens.index(qtile.current_screen)
if i + 1 != len(qtile.screens):
group = qtile.screens[i + 1].group.name
qtile.current_window.togroup(group, switch_group=switch_group)
if switch_screen == True:
qtile.cmd_to_screen(i + 1)
groups = []
# FOR QWERTY KEYBOARDS
group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0",]
#group_labels = ["1 ", "2 ", "3 ", "4 ", "5 ", "6 ", "7 ", "8 ", "9 ", "0",]
group_labels = ["Ⅰ", "Ⅱ", "Ⅲ", "Ⅳ", "Ⅴ", "Ⅵ", "Ⅶ", "Ⅷ", "Ⅸ", "Ⅹ",]
group_layouts = ["monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall",]
#group_layouts = ["monadtall", "matrix", "monadtall", "bsp", "monadtall", "matrix", "monadtall", "bsp", "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],
))
for i in groups:
keys.extend([
#CHANGE WORKSPACES
Key([mod], i.name, lazy.group[i.name].toscreen()),
# MOVE WINDOW TO SELECTED WORKSPACE 1-10 AND STAY ON WORKSPACE
Key([mod, "shift"], i.name, lazy.window.togroup(i.name)),
# MOVE WINDOW TO SELECTED WORKSPACE 1-10 AND FOLLOW MOVED WINDOW TO WORKSPACE
# Key([mod, "shift"], i.name, lazy.window.togroup(i.name) , lazy.group[i.name].toscreen()),
])
def init_layout_theme():
return {"margin":5,
"border_width":2,
"border_focus": "#5e81ac",
"border_normal": "#4c566a"
}
layout_theme = init_layout_theme()
layouts = [
#layout.MonadTall(margin=8, border_width=2, border_focus="#5e81ac", border_normal="#4c566a"),
layout.MonadTall(**layout_theme),
#layout.MonadWide(margin=8, border_width=2, border_focus="#5e81ac", border_normal="#4c566a"),
# layout.MonadWide(**layout_theme),
# layout.Matrix(**layout_theme),
# layout.Bsp(**layout_theme),
# layout.Floating(**layout_theme),
# layout.RatioTile(**layout_theme),
layout.Max(**layout_theme)
]
# COLORS FOR THE BAR
def init_colors():
return [
["#2F343F", "#2F343F"], # color 0
["#000000", "#000000"], # black 1
["#2F343F", "#2F343F"], # color 2
["#c0c5ce", "#c0c5ce"], # color 3
["#fba922", "#fba922"], # color 4
["#3384d0", "#3384d0"], # Blue 5
["#f3f4f5", "#f3f4f5"], # color 6
["#cd1f3f", "#cd1f3f"], # color 7
["#62FF00", "#62FF00"], # color 8
["#6790eb", "#6790eb"], # color 9
["#a9a9a9", "#a9a9a9"], # color 10
['#ff0000', "#ff0000"], # red 11
]
colors = init_colors()
# WIDGETS FOR THE BAR
def init_widgets_defaults():
return dict(font="Noto Sans",
fontsize = 12,
padding = 2,
background=colors[1])
widget_defaults = init_widgets_defaults()
def init_widgets_list():
widgets_list = [
widget.Sep(
linewidth = 1,
padding = 6,
foreground = colors[2],
background = colors[1]
),
widget.Image(
filename = image,
scale = "True",
mouse_callbacks = {'Button1': lambda: qtile.cmd_spawn(myTerm)}
),
widget.GroupBox(
font="FontAwesome",
fontsize = 20,
margin_y = 3,
margin_x = 0,
padding_y = 6,
padding_x = 5,
borderwidth = 1,
disable_drag = True,
active = colors[5],
inactive = colors[10],
rounded = False,
highlight_color = colors[1],
highlight_method = "line",
this_current_screen_border = colors[11],
other_current_screen_border = colors[10],
foreground = colors[2],
background = colors[1],
),
widget.Sep(
linewidth = 1,
padding = 10,
foreground = colors[2],
background = colors[1]
),
widget.CurrentLayout(
font = "Noto Sans Bold",
foreground = colors[4],
background = colors[1]
),
widget.Sep(
linewidth = 1,
padding = 10,
foreground = colors[2],
background = colors[1]
),
widget.WindowName(font="Noto Sans",
fontsize = 12,
foreground = colors[8],
background = colors[1],
),
# widget.Sep(
# linewidth = 1,
# padding = 10,
# foreground = colors[2],
# background = colors[1]
# ),
# widget.Net(
# format='{interface}: U {up} D {down} T {total}'
# ),
widget.Sep(
linewidth = 1,
padding = 10,
foreground = colors[2],
background = colors[1]
),
widget.Memory(
measure_mem="G",
fontsize=15,
graph_color = colors[11]
),
widget.MemoryGraph(
type='box'
),
widget.Sep(
linewidth = 1,
padding = 10,
foreground = colors[2],
background = colors[1]
),
widget.ThermalSensor(
format='{tag}: {temp:.Of}{unit}',
threshold=50,
fontsize=15,
),
widget.CPUGraph(
type='box',
graph_color = colors[5]
),
widget.Sep(
linewidth = 1,
padding = 10,
foreground = colors[2],
background = colors[1]
),
widget.TextBox(
font="FontAwesome",
text=" ",
foreground=colors[5],
background=colors[1],
padding = 0,
fontsize=18
),
widget.Clock(
font='Mono',
foreground = colors[3],
background = colors[1],
fontsize = 18,
format="%d-%m-%Y | %H:%M"
),
widget.Sep(
linewidth = 1,
padding = 3,
foreground = colors[2],
background = colors[1]
),
widget.Systray(
background=colors[1],
icon_size=21,
padding = 10
),
]
return widgets_list
widgets_list = init_widgets_list()
def init_widgets_screen1():
widgets_screen1 = init_widgets_list()
return widgets_screen1
def init_widgets_screen2():
widgets_screen2 = init_widgets_list()
return widgets_screen2[:-1]
widgets_screen1 = init_widgets_screen1()
widgets_screen2 = init_widgets_screen2()
def init_screens():
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), size=33, opacity=0.8)),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), size=26, opacity=0.8))]
screens = init_screens()
@hook.subscribe.startup_once
def start_once():
autostart_path = os.path.expanduser('~/.config/autostart/setup.sh')
#subprocess.run([autostart_path])
follow_mouse_focus = True
bring_front_click = False
cursor_warp = False
auto_fullscreen = True
focus_on_window_activation = "focus" # or smart
wmname = "Qtile-Apo11o"
|