From 7f624d2742089625ffe131ab1b4634a97b94d21d Mon Sep 17 00:00:00 2001 From: Thomas Preisner Date: Thu, 1 Mar 2018 22:32:14 +0100 Subject: [PATCH] config: barpyrus: config.py: add dummy ConkyWidget --- config/barpyrus/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/barpyrus/config.py b/config/barpyrus/config.py index f8b901e..07b7340 100644 --- a/config/barpyrus/config.py +++ b/config/barpyrus/config.py @@ -46,6 +46,9 @@ color = { def frame(content, bg, fg, padding = (3, 3)): return Theme(bg = color[bg], fg = color[fg], padding = padding)(content) +# conky specific configuration +conky_text = '' + # get space for the panel hc(['pad', str(monitor), str(height)]) @@ -66,5 +69,6 @@ bar.widget = W.ListLayout([ W.RawLabel('')), W.RawLabel('%{r}'), + conky.ConkyWidget(text = conky_text), frame(W.DateTime('%d. %B, %H:%M'), 'grey', 'white'), ])