diff options
-rw-r--r-- | .config/qtile/config.py | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index c55c86c..886eae7 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -219,13 +219,20 @@ screens = [ this_current_screen_border=colors["blue"] ), widget.Sep(), - widget.Notify( - foreground_low=colors["red"][1:], - foreground_urgent=colors["red"][1:] - ), +# widget.Notify( +# foreground_low=colors["red"][1:], +# foreground_urgent=colors["red"][1:] +# ), widget.Spacer(), widget.CurrentLayout(), widget.Sep(), + widget.Mpd( + host="127.0.0.1", + port=6600, + reconnect=True, + fmt_playing="%a [%A] %t [%v%%]", + ), + widget.Sep(), widget.HDDGraph(), widget.MemoryGraph(), widget.CPUGraph(), @@ -250,10 +257,10 @@ screens = [ this_current_screen_border=colors["blue"] ), widget.Sep(), - widget.Notify( - foreground_low=colors["red"][1:], - foreground_urgent=colors["red"][1:] - ), +# widget.Notify( +# foreground_low=colors["red"][1:], +# foreground_urgent=colors["red"][1:] +# ), widget.Spacer(), widget.CurrentLayout(), widget.Sep(), |