conky-config/drawing/system.lua

48 lines
1.3 KiB
Lua
Raw Normal View History

local util = require 'util'
local common = require 'common'
local geometry = require 'geometry'
2017-07-19 00:36:15 -04:00
return function()
local TEXT_SPACING = 20
local __string_match = string.match
local header = common.Header(
geometry.LEFT_X,
geometry.TOP_Y,
geometry.SECTION_WIDTH,
'SYSTEM'
)
2021-07-29 22:37:30 -04:00
local rows = common.inittextRows(
geometry.LEFT_X,
header.bottom_y,
geometry.SECTION_WIDTH,
TEXT_SPACING,
{'Kernel', 'Uptime', 'Last Upgrade', 'Last Sync'}
)
local update = function(pacman_stats)
local last_update, last_sync = "N/A", "N/A"
if pacman_stats then
last_update, last_sync = __string_match(pacman_stats, "^%d+%s+([^%s]+)%s+([^%s]+).*")
end
-- TODO this doesn't need to be update every time
common.text_rows_set(rows, 1, util.conky('$kernel'))
common.text_rows_set(rows, 2, util.conky('$uptime'))
common.text_rows_set(rows, 3, last_update)
common.text_rows_set(rows, 4, last_sync)
end
local draw_static = function(cr)
common.drawHeader(cr, header)
common.text_rows_draw_static(rows, cr)
end
local draw_dynamic = function(cr)
common.text_rows_draw_dynamic(rows, cr)
2018-08-05 11:08:37 -04:00
end
2017-07-19 00:36:15 -04:00
return {static = draw_static, dynamic = draw_dynamic, update = update}
end