aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--conky.conf.in2
-rw-r--r--dashboard.lua4
2 files changed, 5 insertions, 1 deletions
diff --git a/conky.conf.in b/conky.conf.in
index cc03a28..6128616 100644
--- a/conky.conf.in
+++ b/conky.conf.in
@@ -52,4 +52,4 @@ conky.config = {
-- producing no output. This is what runs the weather, disks and cache
-- samplers, and tying it to conky means nothing fetches while the dashboard is
-- down.
-conky.text = [[${execi 900 ~/.config/conky/bin/weather-fetch.sh}${execi 60 ~/.config/conky/bin/disks-sample.sh}${execi 900 ~/.config/conky/bin/cache-sample.sh}]]
+conky.text = [[${execi 900 ~/.config/conky/bin/weather-fetch.sh}${execi 60 ~/.config/conky/bin/disks-sample.sh}${execi 900 ~/.config/conky/bin/cache-sample.sh}${execi 1800 ~/.config/conky/bin/pubip-sample.sh}${execi 900 ~/.config/conky/bin/slackware-sample.sh}]]
diff --git a/dashboard.lua b/dashboard.lua
index 17d717b..c1501f9 100644
--- a/dashboard.lua
+++ b/dashboard.lua
@@ -26,6 +26,10 @@ local layout = {
{ widget = 'gpu', col = 12, row = 4, w = 2, h = 3 },
{ widget = 'disks', col = 12, row = 1, w = 5, h = 3 },
{ widget = 'cache', col = 12, row = 7, w = 2, h = 3 },
+ -- Under system, with slackware beside it. Provisional: there is no settled
+ -- arrangement for the board yet.
+ { widget = 'network', col = 14, row = 9, w = 3, h = 3 },
+ { widget = 'slackware', col = 12, row = 10, w = 2, h = 3 },
}
-- ==========================================================================