make the window borders black

This commit is contained in:
Andreas Zweili 2021-11-22 20:33:48 +01:00
parent 42510b1aba
commit d12ff68d01
1 changed files with 8 additions and 3 deletions

View File

@ -79,10 +79,15 @@ for i in groups:
desc="move focused window to group {}".format(i.name)),
])
border = dict(
border_width=1,
border_focus='#000000'
)
layouts = [
layout.Columns(),
layout.TreeTab(),
layout.Max(),
layout.Columns(**border),
layout.TreeTab(**border),
layout.Max(**border),
# Try more layouts by unleashing below layouts.
# layout.Stack(num_stacks=2),
# layout.Bsp(),