blob: 4f47e113d8bfb72872141ce477a43ead1863c9b1 (
plain)
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
|
from libqtile import layout, qtile, widget
from libqtile.config import Click, Drag, Group, Key, Match, Screen
from libqtile.lazy import lazy
from qtile_extras import widget
from qtile_extras.widget.decorations import PowerLineDecoration
import defaults
import keybindings
import bar
groups = defaults.groups
keys = keybindings.keybindings(defaults.mod, defaults._mod, groups)
mouse = keybindings.mousebindings(defaults.mod, defaults._mod)
layouts = defaults.layouts
floating_layout = defaults.floating_layout
widget_defaults = defaults.widget_defaults
extension_defaults = defaults.extension_defaults
screens = [
Screen(
top=bar.default_bar(),
),
]
dgroups_key_binder = None
dgroups_app_rules = []
follow_mouse_focus = True
bring_front_click = False
floats_kept_above = True
cursor_warp = False
auto_fullscreen = True
focus_on_window_activation = "smart"
reconfigure_screens = True
auto_minimize = True
wmname = "LG3D"
|