Minor edits

This commit is contained in:
Derek Taylor
2023-12-10 21:40:38 -06:00
parent 3c9de7aa7f
commit 5b800adb98

View File

@@ -251,39 +251,44 @@ layouts = [
#layout.Bsp(**layout_theme), #layout.Bsp(**layout_theme),
#layout.Floating(**layout_theme) #layout.Floating(**layout_theme)
#layout.RatioTile(**layout_theme), #layout.RatioTile(**layout_theme),
#layout.Tile(shift_windows=True, **layout_theme),
#layout.VerticalTile(**layout_theme), #layout.VerticalTile(**layout_theme),
#layout.Matrix(**layout_theme), #layout.Matrix(**layout_theme),
layout.MonadTall(**layout_theme), layout.MonadTall(**layout_theme),
#layout.MonadWide(**layout_theme), #layout.MonadWide(**layout_theme),
layout.Tile(
shift_windows=True,
border_width = 0,
margin = 0,
ratio = 0.34,
),
layout.Max( layout.Max(
border_width = 0, border_width = 0,
margin = 0, margin = 0,
), ),
layout.Stack(**layout_theme, num_stacks=2), #layout.Stack(**layout_theme, num_stacks=2),
layout.Columns(**layout_theme), #layout.Columns(**layout_theme),
layout.TreeTab( #layout.TreeTab(
font = "Ubuntu Bold", # font = "Ubuntu Bold",
fontsize = 11, # fontsize = 11,
border_width = 0, # border_width = 0,
bg_color = colors[0], # bg_color = colors[0],
active_bg = colors[8], # active_bg = colors[8],
active_fg = colors[2], # active_fg = colors[2],
inactive_bg = colors[1], # inactive_bg = colors[1],
inactive_fg = colors[0], # inactive_fg = colors[0],
padding_left = 8, # padding_left = 8,
padding_x = 8, # padding_x = 8,
padding_y = 6, # padding_y = 6,
sections = ["ONE", "TWO", "THREE"], # sections = ["ONE", "TWO", "THREE"],
section_fontsize = 10, # section_fontsize = 10,
section_fg = colors[7], # section_fg = colors[7],
section_top = 15, # section_top = 15,
section_bottom = 15, # section_bottom = 15,
level_shift = 8, # level_shift = 8,
vspace = 3, # vspace = 3,
panel_width = 240 # panel_width = 240
), # ),
layout.Zoomy(**layout_theme), #layout.Zoomy(**layout_theme),
] ]
# Some settings that I use on almost every widget, which saves us # Some settings that I use on almost every widget, which saves us