diff options
author | ThanosApollo <[email protected]> | 2022-09-18 13:42:01 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-09-18 13:42:01 +0300 |
commit | ff30625189e749d89a9ff4e5e8d4da86d64b2783 (patch) | |
tree | dc92af08ba196f08a4eb9684b19f267a09212088 /.config | |
parent | f4ccf2e14ef98b553903eb7344053414627b23c2 (diff) |
Add extra comments
Diffstat (limited to '.config')
-rw-r--r-- | .config/qtile/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index d7a63bc..edb8485 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -35,6 +35,7 @@ my_keys = MyKeys(mod="mod4", keys = my_keys.init_keys() dgroups_key_binder = simple_key_binder("mod4") +## Groups and layouts groups = [] group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0",] group_labels = ["Ⅰ", "Ⅱ", "Ⅲ", "Ⅳ", "Ⅴ", "Ⅵ", "Ⅶ", "Ⅷ", "Ⅸ", "Ⅹ",] @@ -70,7 +71,7 @@ layouts = [ layout.Max(**layout_theme) ] -# WIDGETS FOR THE BAR +# Widgets def init_widgets_defaults(): return dict(font="Noto Sans", @@ -82,7 +83,6 @@ widget_defaults = init_widgets_defaults() def init_widgets_list(): widgets_list = [ - widget.Sep( linewidth = 1, padding = 6, |