This commit is contained in:
Stephan Raabe 2023-02-24 12:23:07 +01:00
parent 6c20fdbf8f
commit dd5024cbc0
2 changed files with 8 additions and 5 deletions

View File

@ -222,10 +222,7 @@ extension_defaults = widget_defaults.copy()
# Screens and Widgets # Screens and Widgets
# -------------------------------------------------------- # --------------------------------------------------------
screens = [ widget_list = [
Screen(
top=bar.Bar(
[
widget.GroupBox( widget.GroupBox(
highlight_method='block', highlight_method='block',
highlight='ffffff', highlight='ffffff',
@ -297,7 +294,13 @@ screens = [
fontsize=20, fontsize=20,
countdown_start=3, countdown_start=3,
), ),
],
]
screens = [
Screen(
top=bar.Bar(
widget_list,
24, 24,
opacity=0.7, opacity=0.7,
border_width=[3, 0, 3, 0], # Draw top and bottom borders border_width=[3, 0, 3, 0], # Draw top and bottom borders