diff --git a/qtile/.config/qtile/config.py b/qtile/.config/config.py similarity index 79% rename from qtile/.config/qtile/config.py rename to qtile/.config/config.py index bda2787..68101ca 100644 --- a/qtile/.config/qtile/config.py +++ b/qtile/.config/config.py @@ -143,6 +143,54 @@ screens = [ 24, ), ), + Screen( + top=bar.Bar( + [ + widget.CurrentLayout(), + widget.GroupBox(), + widget.Prompt(), + widget.WindowName(), + widget.Chord( + chords_colors={ + 'launch': ("#ff0000", "#ffffff"), + }, + name_transform=lambda name: name.upper(), + ), + widget.Systray(), + widget.CheckUpdates(colour_no_updates='ff0000', + display_format='Updates:{updates}'), + widget.CPU(format='CPU: {load_percent}%', + update_interval=2), + widget.Clock(format='%Y-%m-%d %a %H:%M'), + widget.QuickExit(), + ], + 24, + ), + ), + Screen( + top=bar.Bar( + [ + widget.CurrentLayout(), + widget.GroupBox(), + widget.Prompt(), + widget.WindowName(), + widget.Chord( + chords_colors={ + 'launch': ("#ff0000", "#ffffff"), + }, + name_transform=lambda name: name.upper(), + ), + widget.Systray(), + widget.CheckUpdates(colour_no_updates='ff0000', + display_format='Updates:{updates}'), + widget.CPU(format='CPU: {load_percent}%', + update_interval=2), + widget.Clock(format='%Y-%m-%d %a %H:%M'), + widget.QuickExit(), + ], + 24, + ), + ), ] #endregion