diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-17 18:52:44 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-17 18:52:44 +0200 |
| commit | 4b6c6b4856c8aa39375542aeb912b56168533a3a (patch) | |
| tree | 0f8dc62f3346d562fcbe49afdf50c53216b30e53 | |
| parent | 388943f22861fb50951beeca11221260f37222ca (diff) | |
| download | conky-theme-udt-4b6c6b4856c8aa39375542aeb912b56168533a3a.tar.gz conky-theme-udt-4b6c6b4856c8aa39375542aeb912b56168533a3a.zip | |
feat: move the cards to the right of the screen
Groups the machine cards into the right-hand columns and leaves the clock
and weather alone on the left, rather than spreading all six across the
middle. Provisional: there is no settled arrangement for the board yet.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
| -rw-r--r-- | dashboard.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dashboard.lua b/dashboard.lua index 9b527ce..17d717b 100644 --- a/dashboard.lua +++ b/dashboard.lua @@ -22,10 +22,10 @@ local layout = { { widget = 'clock', col = 1, row = 1, w = 1.5, h = 5 }, -- Under the clock, same column. { widget = 'weather', col = 1, row = 6, w = 3, h = 5 }, - { widget = 'system', col = 4, row = 1, w = 3, h = 6 }, - { widget = 'gpu', col = 7, row = 1, w = 3, h = 3 }, - { widget = 'disks', col = 7, row = 4, w = 5, h = 4 }, - { widget = 'cache', col = 12, row = 4, w = 3, h = 4 }, + { 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 }, + { widget = 'cache', col = 12, row = 7, w = 2, h = 3 }, } -- ========================================================================== |
