From ca2b8542faa8e062dc06969095eb3032fc1d811c Mon Sep 17 00:00:00 2001 From: David Runge Date: Tue, 30 Jan 2018 21:39:38 +0100 Subject: .config/qtile/config.py: Removing unused layouts. Setting up GroupBox widget more sane. Moving CurrentLayout widget to the left. --- .config/qtile/config.py | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) (limited to '.config') diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 55bebbf..b3095bb 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -288,23 +288,12 @@ layouts = [ panel_width=100, previous_on_rm=True, ), - layout.Stack( - border_focus=colors["red"][1:], - border_normal=colors["green"][1:], - margin=1, - ), layout.Max(), layout.VerticalTile( border_focus=colors["red"][1:], border_normal=colors["green"][1:], margin=1, ), - layout.Matrix( - border_focus=colors["red"][1:], - border_normal=colors["green"][1:], - margin=1, - ), - layout.Zoomy(), ] widget_defaults = dict( @@ -319,16 +308,21 @@ screens = [ widget.CurrentScreen(), widget.Sep(), widget.GroupBox( + active="fff0f0", + inactive="808080", highlight_method="block", - this_current_screen_border=colors["blue"] + this_current_screen_border="c22b25", + this_screen_border="619a75", + other_current_screen_border="ba9998", + other_screen_border="26914c", ), widget.Sep(), widget.Notify( foreground_low=colors["red"][1:], foreground_urgent=colors["red"][1:] ), - widget.Spacer(), widget.CurrentLayout(), + widget.Spacer(), widget.Sep(), widget.Mpd( host="127.0.0.1", @@ -340,21 +334,21 @@ screens = [ widget.HDDGraph( graph_color=colors["blue"], border_width=0, - samples=20, + samples=10, frequency=5, type="box", ), widget.MemoryGraph( graph_color=colors["green"], border_width=0, - samples=20, + samples=10, frequency=2, type="box", ), widget.CPUGraph( graph_color=colors["red"], border_width=0, - samples=20, + samples=10, frequency=2, type="box", ), @@ -374,17 +368,22 @@ screens = [ widget.CurrentScreen(), widget.Sep(), widget.GroupBox( + active="fff0f0", + inactive="808080", highlight_method="block", - this_current_screen_border=colors["blue"] + this_current_screen_border="c22b25", + this_screen_border="619a75", + other_current_screen_border="ba9998", + other_screen_border="26914c", ), widget.Sep(), + widget.CurrentLayout(), + widget.Sep(), widget.Notify( foreground_low=colors["red"][1:], foreground_urgent=colors["red"][1:] ), widget.Spacer(), - widget.CurrentLayout(), - widget.Sep(), widget.Clock( timezone="Europe/Berlin", format="%Y%m%d %a %H:%M:%S" -- cgit v1.2.3-54-g00ecf