REF make pacman and system modules look pretty

This commit is contained in:
Nathan Dwarshuis 2021-07-18 00:06:49 -04:00
parent 81b6a6b2aa
commit 862967089f
2 changed files with 74 additions and 77 deletions

View File

@ -1,29 +1,28 @@
local Common = require 'Common' local Common = require 'Common'
local Geometry = require 'Geometry' local Geometry = require 'Geometry'
local __string_match = string.match return function()
local __string_gmatch = string.gmatch local TEXT_SPACING = 20
local _TEXT_SPACING_ = 20 local __string_match = string.match
local __string_gmatch = string.gmatch
local header = Common.Header( local header = Common.Header(
Geometry.RIGHT_X, Geometry.RIGHT_X,
Geometry.TOP_Y, Geometry.TOP_Y,
Geometry.SECTION_WIDTH, Geometry.SECTION_WIDTH,
'PACMAN' 'PACMAN'
) )
local rows = Common.initTextRows( local rows = Common.initTextRows(
Geometry.RIGHT_X, Geometry.RIGHT_X,
header.bottom_y, header.bottom_y,
Geometry.SECTION_WIDTH, Geometry.SECTION_WIDTH,
_TEXT_SPACING_, TEXT_SPACING,
{'Total', 'Explicit', 'Outdated', 'Orphaned', 'Local'} {'Total', 'Explicit', 'Outdated', 'Orphaned', 'Local'}
) )
_TEXT_SPACING_ = nil local update = function(cr, pacman_stats)
local update = function(cr, pacman_stats)
local stats = __string_match(pacman_stats, '%d+%s+[^%s]+%s+[^%s]+%s+(.*)$') local stats = __string_match(pacman_stats, '%d+%s+[^%s]+%s+[^%s]+%s+(.*)$')
if stats then if stats then
local i = 1 local i = 1
@ -36,18 +35,17 @@ local update = function(cr, pacman_stats)
Common.text_rows_set(rows, cr, i, 'N/A') Common.text_rows_set(rows, cr, i, 'N/A')
end end
end end
end end
local draw_static = function(cr) local draw_static = function(cr)
Common.drawHeader(cr, header) Common.drawHeader(cr, header)
Common.text_rows_draw_static(rows, cr) Common.text_rows_draw_static(rows, cr)
end end
local draw_dynamic = function(cr, pacman_stats) local draw_dynamic = function(cr, pacman_stats)
update(cr, pacman_stats) update(cr, pacman_stats)
Common.text_rows_draw_dynamic(rows, cr) Common.text_rows_draw_dynamic(rows, cr)
end end
return function()
return {static = draw_static, dynamic = draw_dynamic} return {static = draw_static, dynamic = draw_dynamic}
end end

View File

@ -2,44 +2,43 @@ local Util = require 'Util'
local Common = require 'Common' local Common = require 'Common'
local Geometry = require 'Geometry' local Geometry = require 'Geometry'
local __string_match = string.match return function()
local TEXT_SPACING = 20
local _TEXT_SPACING_ = 20 local __string_match = string.match
local header = Common.Header( local header = Common.Header(
Geometry.LEFT_X, Geometry.LEFT_X,
Geometry.TOP_Y, Geometry.TOP_Y,
Geometry.SECTION_WIDTH, Geometry.SECTION_WIDTH,
'SYSTEM' 'SYSTEM'
) )
local rows = Common.initTextRows( local rows = Common.initTextRows(
Geometry.LEFT_X, Geometry.LEFT_X,
header.bottom_y, header.bottom_y,
Geometry.SECTION_WIDTH, Geometry.SECTION_WIDTH,
_TEXT_SPACING_, TEXT_SPACING,
{'Kernel', 'Uptime', 'Last Upgrade', 'Last Sync'} {'Kernel', 'Uptime', 'Last Upgrade', 'Last Sync'}
) )
_TEXT_SPACING_ = nil local draw_static = function(cr)
local draw_static = function(cr)
Common.drawHeader(cr, header) Common.drawHeader(cr, header)
Common.text_rows_draw_static(rows, cr) Common.text_rows_draw_static(rows, cr)
end end
local draw_dynamic = function(cr, pacman_stats) local draw_dynamic = function(cr, pacman_stats)
local last_update, last_sync = "N/A", "N/A" local last_update, last_sync = "N/A", "N/A"
if pacman_stats then if pacman_stats then
last_update, last_sync = __string_match(pacman_stats, "^%d+%s+([^%s]+)%s+([^%s]+).*") last_update, last_sync = __string_match(pacman_stats, "^%d+%s+([^%s]+)%s+([^%s]+).*")
end end
-- TODO this doesn't need to be update every time
Common.text_rows_set(rows, cr, 1, Util.conky('$kernel')) Common.text_rows_set(rows, cr, 1, Util.conky('$kernel'))
Common.text_rows_set(rows, cr, 2, Util.conky('$uptime')) Common.text_rows_set(rows, cr, 2, Util.conky('$uptime'))
Common.text_rows_set(rows, cr, 3, last_update) Common.text_rows_set(rows, cr, 3, last_update)
Common.text_rows_set(rows, cr, 4, last_sync) Common.text_rows_set(rows, cr, 4, last_sync)
Common.text_rows_draw_dynamic(rows, cr) Common.text_rows_draw_dynamic(rows, cr)
end end
return function()
return {static = draw_static, dynamic = draw_dynamic} return {static = draw_static, dynamic = draw_dynamic}
end end