Updating qtile config.

This commit is contained in:
Derek Taylor
2025-02-27 15:02:08 -06:00
parent cc539be276
commit 47e2a57eb4
2 changed files with 20 additions and 18 deletions

View File

@@ -261,9 +261,10 @@ Groups are really workspaces. group_names should remain 1-9 so the MOD+1-9 keyb
groups = []
group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
#group_labels = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"]
#group_labels = ["DEV", "WWW", "SYS", "DOC", "VBOX", "CHAT", "MUS", "VID", "GFX", "MISC"]
group_labels = ["", "", "", "", "", "", "", "", ""]
#group_labels = ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
#group_labels = ["DEV", "WWW", "SYS", "DOC", "VBOX", "CHAT", "MUS", "VID", "GFX"]
#group_labels = ["", "", "", "", "", "", "⛨", "", ""]
group_labels = ["", "", "", "", "", "", "", "", ""]
group_layouts = ["monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall"]
@@ -322,7 +323,7 @@ Some settings that I use on almost every layout, which saves me from having to t
#+begin_src python
layout_theme = {"border_width": 2,
"margin": 8,
"margin": 12,
"border_focus": colors[8],
"border_normal": colors[0]
}
@@ -404,9 +405,9 @@ def init_widgets_list():
foreground = colors[1]
),
widget.GroupBox(
fontsize = 15,
fontsize = 11,
margin_y = 5,
margin_x = 10,
margin_x = 8,
padding_y = 0,
padding_x = 1,
borderwidth = 3,
@@ -514,9 +515,9 @@ def init_widgets_screen2():
# For ex: Screen(top=bar.Bar(widgets=init_widgets_screen2(), background="#00000000", size=24)),
def init_screens():
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), margin=[8, 12, 8, 12], size=28)),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), margin=[8, 12, 8, 12], size=28)),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), margin=[8, 12, 8, 12], size=28))]
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), margin=[8, 12, 0, 12], size=28)),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), margin=[8, 12, 0, 12], size=28)),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), margin=[8, 12, 0, 12], size=28))]
if __name__ in ["config", "__main__"]:
screens = init_screens()