aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dashboard.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/dashboard.lua b/dashboard.lua
index f5c068e..2d1666f 100644
--- a/dashboard.lua
+++ b/dashboard.lua
@@ -16,12 +16,12 @@ local card = require 'lib.card'
-- Order and position are yours: edit this table, nothing else.
-- col/row are grid cells, w/h span cells. Cell size is derived from the
-- surface, so the same table works on a 2560x1080 and a 1920x1080 screen.
-local COLS, ROWS = 8, 6
+local COLS, ROWS = 16, 12
local layout = {
- { widget = 'clock', col = 1, row = 1, w = 1, h = 3 },
+ { widget = 'clock', col = 1, row = 1, w = 1.5, h = 5 },
-- Under the clock, same column.
- { widget = 'weather', col = 1, row = 4, w = 2, h = 3 },
+ { widget = 'weather', col = 1, row = 6, w = 3, h = 5 },
}
-- ==========================================================================