-
Notifications
You must be signed in to change notification settings - Fork 10
/
config.py
104 lines (74 loc) · 2.67 KB
/
config.py
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
###############################################
### QTILE CONFIGURATION FILE OF DANIEL DIAZ ###
#
# ____ ____
# | _ \ | _ \ Copyright (c) 2020 Daniel Diaz
# | | | || | | |
# | |_| || |_| | http://www.github.com/DaniDiazTech/
# |____/ |____/
#
####### IMPORTS #########
import os
import subprocess
# from typing import List # noqa: F401
from libqtile import hook, layout
from libqtile.config import Group, Match
# Local Files
from keys.keybindings import Mouse,Keybindings
from widgets import MyWidgets
from layouts import Layouts
from groups import CreateGroups
from icons import group_icons
###### MAIN ######
if __name__ in ["config", "__main__"]:
# Initializes objects
# Initializes keybindings
obj_keys = Keybindings()
# Mouse
obj_mouse = Mouse()
obj_widgets = MyWidgets()
obj_layouts = Layouts()
obj_groups = CreateGroups()
# Initializes qtile variables
keys = obj_keys.init_keys()
mouse = obj_mouse.init_mouse()
layouts = obj_layouts.init_layouts()
groups = obj_groups.init_groups()
# Append group keys for groups
keys += obj_keys.init_keys_groups(group_icons)
### DISPLAYS WIDGETS IN THE SCREEN ####
screens = obj_widgets.init_screen()
main_widgets_list = obj_widgets.init_widgets_list()
widgets_screen1 = obj_widgets.init_widgets_screen()
dgroups_key_binder = None
dgroups_app_rules = [] # type: list
follow_mouse_focus = True
bring_front_click = False
cursor_warp = False
floating_layout = layout.Floating(float_rules=[
# Run the utility of `xprop` to see the wm class and name of an X client.
*layout.Floating.default_float_rules,
Match(wm_class='confirmreset'), # gitk
Match(wm_class='dialog'), # Dialogs stuff
Match(wm_class='makebranch'), # gitk
Match(wm_class='maketag'), # gitk
Match(wm_class='ssh-askpass'), # ssh-askpass
Match(title='branchdialog'), # gitk
Match(title='pinentry'), # GPG key password entry
])
auto_fullscreen = True
focus_on_window_activation = "smart"
reconfigure_screens = True
# If things like steam games want to auto-minimize themselves when losing
# focus, should we respect this or not?
respect_minimize_requests = True
# XXX: Gasp! We're lying here. In fact, nobody really uses or cares about this
wmname = "LG3D"
@hook.subscribe.startup_once
def start_once():
home = os.path.expanduser('~')
subprocess.call([home + '/.local/bin/autostart'])
@hook.subscribe.client_new
def dialogs(window):
if(window.window.get_wm_type() == 'dialog' or window.window.get_wm_transient_for()):
window.floating = True