From 79bac6624e5a74ffd21522abaa523131d3d7f246 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Thu, 6 Dec 2018 01:44:11 -0500 Subject: [PATCH] C Improved graphs. --- config.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/config.py b/config.py index 6b64693..4d226a1 100644 --- a/config.py +++ b/config.py @@ -414,7 +414,8 @@ screens = [ ), widget.NetGraph( bandwidth_type="up", - type="box" + type="linefill", + line_width=1 ), widget.Spacer( length=10 @@ -427,7 +428,8 @@ screens = [ ), widget.NetGraph( bandwidth_type="down", - type="box" + type="linefill", + line_width=1 ), widget.Spacer( length=10 @@ -439,7 +441,8 @@ screens = [ padding=0 ), widget.CPUGraph( - type="box" + type="linefill", + line_width=1 ), widget.Spacer( length=10 @@ -451,7 +454,8 @@ screens = [ padding=0 ), widget.MemoryGraph( - type="box" + type="linefill", + line_width=1 ), widget.Spacer( length=10 @@ -464,7 +468,8 @@ screens = [ ), widget.HDDBusyGraph( device="nvme0n1", - type="box", + type="linefill", + line_width=1 ), widget.Spacer( length=10 -- GitLab