extend the qtile widgets

This commit is contained in:
Andreas Zweili 2021-11-19 16:42:22 +01:00
parent dcf04f15cd
commit dcee769261
1 changed files with 13 additions and 3 deletions

View File

@ -94,12 +94,22 @@ screens = [
Screen(
top=bar.Bar(
[
widget.CurrentLayout(),
widget.GroupBox(),
widget.Prompt(),
widget.Sep(padding=5),
widget.WindowName(),
widget.Sep(padding=5),
widget.CurrentLayout(),
widget.Sep(padding=5),
widget.DF(visible_on_warn=False),
widget.Sep(padding=5),
widget.Volume(),
widget.Sep(padding=5),
widget.Battery(charge_char='', discharge_char='',
full_char='', show_short_text=False),
widget.Sep(padding=5),
widget.Systray(),
widget.Clock(format='%Y-%m-%d %a %I:%M %p'),
widget.Sep(padding=5),
widget.Clock(format='%Y-%m-%d %a %H:%M'),
],
24,
),