Make the qtile bar transparent

This commit is contained in:
Andreas Zweili 2023-09-07 19:38:26 +02:00
parent 76cd7c89ad
commit fd8d678df4
1 changed files with 4 additions and 1 deletions

View File

@ -184,7 +184,7 @@ def top_bar_widgets():
],
),
widget.Sep(padding=5),
widget.Systray(),
widget.Systray(background="#00000000"),
widget.Sep(padding=5),
widget.Clock(format="%Y-%m-%d %a %H:%M"),
]
@ -203,6 +203,7 @@ screens = [
top=bar.Bar(
top_bar_widgets(),
30,
background="#00000080",
),
),
Screen(
@ -219,6 +220,7 @@ screens = [
widget.Clock(format="%Y-%m-%d %a %H:%M"),
],
30,
background="#00000080",
),
),
Screen(
@ -235,6 +237,7 @@ screens = [
widget.Clock(format="%Y-%m-%d %a %H:%M"),
],
30,
background="#00000080",
),
),
]