Float out the bar a little bit if there are no windows, or multiple windows. Make single windows always fullscreen with no margins. Make bar transparent except when hovered over.
This commit is contained in:
parent
fa5bbee56e
commit
d6870c56b0
6 changed files with 178 additions and 10 deletions
|
|
@ -151,6 +151,7 @@ class Config(BaseConfig):
|
|||
# Sizes
|
||||
width_border = 1
|
||||
margin_layout = 8
|
||||
margin_layout_single = 0
|
||||
width_spacer = 1
|
||||
padding_spacer = 4
|
||||
grow_amount = 5
|
||||
|
|
@ -164,7 +165,8 @@ class Config(BaseConfig):
|
|||
|
||||
# Bar variables
|
||||
bar_background = background
|
||||
bar_rgba_opacity = "AA"
|
||||
bar_rgba_opacity = "00"
|
||||
bar_rgba_opacity_hover = "AA"
|
||||
bar_opacity = 1.0
|
||||
bar_hover_opacity = 1
|
||||
|
||||
|
|
@ -180,6 +182,7 @@ class Config(BaseConfig):
|
|||
colour_groupbox_border_focus = foreground
|
||||
colour_groupbox_icon_active = foreground
|
||||
colour_groupbox_icon_inactive = inactive_light
|
||||
colour_groupbox_highlight = highlight
|
||||
|
||||
# Tasklist variables
|
||||
tasklist_border = foreground
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue