aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-17 19:30:26 +0200
committerDanilo M. <danix@danix.xyz>2026-09-17 19:30:26 +0200
commit3acd6abe49dd2f03a3b5ffcbbbea747eeb434e66 (patch)
tree7877a06cbea9e7f6b118b7ce735f053e845edbf3
parentdddeee2d12207fd42a2930de14c8f0b368eede55 (diff)
downloadconky-theme-udt-3acd6abe49dd2f03a3b5ffcbbbea747eeb434e66.tar.gz
conky-theme-udt-3acd6abe49dd2f03a3b5ffcbbbea747eeb434e66.zip
feat: put the network and slackware cards on the board
Placement is provisional: there is no settled arrangement yet. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
-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 },
}
-- ==========================================================================