aboutsummaryrefslogtreecommitdiffstats
path: root/.config/qtile
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2018-01-30 21:39:38 +0100
committerDavid Runge <dave@sleepmap.de>2018-01-30 21:39:38 +0100
commitca2b8542faa8e062dc06969095eb3032fc1d811c (patch)
tree85207adacc91d9f0c563a8b701072014fe330a58 /.config/qtile
parent08c8e684923b66029771f2f7d09417997ecae5df (diff)
downloaddotfiles-ca2b8542faa8e062dc06969095eb3032fc1d811c.tar.gz
dotfiles-ca2b8542faa8e062dc06969095eb3032fc1d811c.tar.bz2
dotfiles-ca2b8542faa8e062dc06969095eb3032fc1d811c.tar.xz
dotfiles-ca2b8542faa8e062dc06969095eb3032fc1d811c.zip
.config/qtile/config.py: Removing unused layouts. Setting up GroupBox widget more sane. Moving CurrentLayout widget to the left.
Diffstat (limited to '.config/qtile')
-rw-r--r--.config/qtile/config.py37
1 files changed, 18 insertions, 19 deletions
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"