aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-18 09:45:10 +0200
committerDanilo M. <danix@danix.xyz>2026-09-18 09:45:10 +0200
commit5494e10d70108d7c3b395762277b858b43a1fe0a (patch)
treed65090140f5a1512e900e7490bb237f123d72001
parentd0393fffb4191e6b29252690381d8dbb48314c77 (diff)
downloadconky-theme-udt-5494e10d70108d7c3b395762277b858b43a1fe0a.tar.gz
conky-theme-udt-5494e10d70108d7c3b395762277b858b43a1fe0a.zip
chore: place the calendar card on the board
Calendar to the middle column, with the clock and weather shifted down and right to make room for it. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
-rw-r--r--dashboard.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/dashboard.lua b/dashboard.lua
index cb3b8b3..9d1e515 100644
--- a/dashboard.lua
+++ b/dashboard.lua
@@ -19,9 +19,11 @@ local card = require 'lib.card'
local COLS, ROWS = 16, 12
local layout = {
- { widget = 'clock', col = 1, row = 1, w = 1.5, h = 5 },
+ { widget = 'clock', col = 1, row = 1.5, w = 1.5, h = 5 },
-- Under the clock, same column.
- { widget = 'weather', col = 1, row = 6, w = 3, h = 5 },
+ { widget = 'weather', col = 1, row = 7, w = 3, h = 5 },
+ -- Left of the disks row, in the board's open middle column.
+ { widget = 'calendar', col = 2.5, row = 1, w = 3, h = 6 },
{ widget = 'system', col = 14, row = 4, w = 3, h = 5 },
{ widget = 'gpu', col = 12, row = 4, w = 2, h = 3 },
{ widget = 'disks', col = 12, row = 1, w = 5, h = 3 },
@@ -30,8 +32,6 @@ local layout = {
-- 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 },
- -- Left of the disks row, in the board's open middle column.
- { widget = 'calendar', col = 4, row = 1, w = 3, h = 6 },
}
-- ==========================================================================