2022-01-25 21:28:02 +01:00
|
|
|
from modules.groups import groups
|
2022-03-20 18:01:58 +01:00
|
|
|
from modules.keys import keys, mod
|
|
|
|
from modules.layouts import floating_layout, layouts
|
2022-01-25 21:28:02 +01:00
|
|
|
from modules.mouse import mouse
|
|
|
|
from modules.hooks import *
|
|
|
|
from modules.screens import screens
|
2022-03-20 18:01:58 +01:00
|
|
|
|
2022-01-25 21:28:02 +01:00
|
|
|
dgroups_key_binder = None
|
|
|
|
dgroups_app_rules = [] # type: List
|
|
|
|
main = None # WARNING: this is deprecated and will be removed soon
|
|
|
|
follow_mouse_focus = True
|
|
|
|
bring_front_click = False
|
|
|
|
cursor_warp = False
|
|
|
|
auto_fullscreen = True
|
2022-03-18 00:11:36 +01:00
|
|
|
focus_on_window_activation = "urgent"
|
|
|
|
wmname = "LG3D"
|
2022-01-25 21:28:02 +01:00
|
|
|
widget_defaults = dict(
|
2022-03-20 18:01:58 +01:00
|
|
|
font="Cascadia Code", fontsize=16, padding=12, foreground="CEC8C6"
|
2022-01-25 21:28:02 +01:00
|
|
|
)
|