conky-config/drawing/Pacman.lua

68 lines
1.3 KiB
Lua

local M = {}
local Text = require 'Text'
local Line = require 'Line'
local TextColumn = require 'TextColumn'
local Util = require 'Util'
local PACMAN_TABLE = {
'pacman -Qq',
'pacman -Qeq',
'pacman -Quq',
'pacman -Qdtq',
'pacman -Qmq'
}
local _TEXT_SPACING_ = 20
local header = _G_Widget_.Header{
x = _G_INIT_DATA_.RIGHT_X,
y = _G_INIT_DATA_.TOP_Y,
width = _G_INIT_DATA_.SECTION_WIDTH,
header = 'PACMAN'
}
local labels = _G_Widget_.TextColumn{
x = _G_INIT_DATA_.RIGHT_X,
y = header.bottom_y,
spacing = _TEXT_SPACING_,
'Total',
'Explicit',
'Outdated',
'Orphaned',
'Local'
}
local info = _G_Widget_.TextColumn{
x = _G_INIT_DATA_.RIGHT_X + _G_INIT_DATA_.SECTION_WIDTH,
y = header.bottom_y,
spacing = _TEXT_SPACING_,
x_align = 'right',
text_color = _G_Patterns_.BLUE,
num_rows = 5
}
_TEXT_SPACING_ = nil
local update = function(cr)
for i, cmd in pairs(PACMAN_TABLE) do
TextColumn.set(info, cr, i, Util.line_count(Util.execute_cmd(cmd)))
end
end
local draw_static = function(cr)
Text.draw(header.text, cr)
Line.draw(header.underline, cr)
TextColumn.draw(labels, cr)
end
local draw_dynamic = function(cr, log_is_changed)
if log_is_changed then update(cr) end
TextColumn.draw(info, cr)
end
M.draw_static = draw_static
M.draw_dynamic = draw_dynamic
return M