conky-config/module/Pacman.lua

68 lines
1.6 KiB
Lua
Raw Normal View History

2016-08-11 23:25:56 -04:00
local _CR = require 'CR'
local Widget = require 'Widget'
local Text = require 'Text'
local Line = require 'Line'
local TextColumn = require 'TextColumn'
local util = require 'util'
local schema = require 'default_patterns'
2017-07-17 02:21:22 -04:00
local _TEXT_SPACING_ = 20
2016-08-11 23:25:56 -04:00
local header = Widget.Header{
2017-07-16 14:50:33 -04:00
x = _G_INIT_DATA_.RIGHT_X,
y = _G_INIT_DATA_.TOP_Y,
width = _G_INIT_DATA_.SECTION_WIDTH,
2017-07-17 02:21:22 -04:00
header = 'PACMAN'
2016-08-11 23:25:56 -04:00
}
local labels = Widget.TextColumn{
2017-07-16 14:50:33 -04:00
x = _G_INIT_DATA_.RIGHT_X,
2016-08-11 23:25:56 -04:00
y = header.bottom_y,
2017-07-17 02:21:22 -04:00
spacing = _TEXT_SPACING_,
2016-08-11 23:25:56 -04:00
'Total',
'Explicit',
'Outdated',
'Orphaned',
'Local'
}
local info = Widget.TextColumn{
2017-07-16 14:50:33 -04:00
x = _G_INIT_DATA_.RIGHT_X + _G_INIT_DATA_.SECTION_WIDTH,
2016-08-11 23:25:56 -04:00
y = header.bottom_y,
2017-07-17 02:21:22 -04:00
spacing = _TEXT_SPACING_,
2016-08-11 23:25:56 -04:00
x_align = 'right',
text_color = schema.blue,
num_rows = 5,
}
Widget = nil
schema = nil
2017-07-17 02:21:22 -04:00
_TEXT_SPACING_ = nil
2016-08-11 23:25:56 -04:00
2017-07-17 02:21:22 -04:00
local update = function(cr)
local _execute_cmd = util.execute_cmd
local _line_count = util.line_count
2016-08-11 23:25:56 -04:00
2017-07-17 02:21:22 -04:00
TextColumn.set(info, cr, 1, _line_count(_execute_cmd('pacman -Q')))
TextColumn.set(info, cr, 2, _line_count(_execute_cmd('pacman -Qe')))
TextColumn.set(info, cr, 3, _line_count(_execute_cmd('pacman -Qu')))
TextColumn.set(info, cr, 4, _line_count(_execute_cmd('pacman -Qdt')))
TextColumn.set(info, cr, 5, _line_count(_execute_cmd('pacman -Qm')))
2016-08-11 23:25:56 -04:00
end
2017-07-17 02:21:22 -04:00
update(_CR)
2016-08-11 23:25:56 -04:00
_CR = nil
local draw = function(cr, current_interface, trigger)
2017-07-17 02:21:22 -04:00
if trigger == 0 then update(cr) end
2016-08-11 23:25:56 -04:00
if current_interface == 0 then
Text.draw(header.text, cr)
Line.draw(header.underline, cr)
TextColumn.draw(labels, cr)
TextColumn.draw(info, cr)
end
end
return draw