conky-config/module/System.lua

77 lines
1.8 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 03:31:18 -04:00
local __string_match = string.match
2016-08-11 23:25:56 -04:00
local DATE_REGEX = '%[(%d-)%-(%d-%-%d-)%s'
local UPGRADE_CMD = "sed -n '/ starting full system upgrade/p' /var/log/pacman.log | tail -1"
local SYNC_CMD = "sed -n '/ synchronizing package lists/p' /var/log/pacman.log | tail -1"
2017-07-17 03:31:18 -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_.LEFT_X,
y = _G_INIT_DATA_.TOP_Y,
width = _G_INIT_DATA_.SECTION_WIDTH,
2017-07-17 03:31:18 -04:00
header = 'SYSTEM'
2016-08-11 23:25:56 -04:00
}
local labels = Widget.TextColumn{
2017-07-16 14:50:33 -04:00
x = _G_INIT_DATA_.LEFT_X,
2016-08-11 23:25:56 -04:00
y = header.bottom_y,
2017-07-17 03:31:18 -04:00
spacing = _TEXT_SPACING_,
2016-08-11 23:25:56 -04:00
'Kernel',
'Uptime',
'Last Upgrade',
'Last Sync'
}
local info = Widget.TextColumn{
2017-07-16 14:50:33 -04:00
x = _G_INIT_DATA_.LEFT_X + _G_INIT_DATA_.SECTION_WIDTH,
2016-08-11 23:25:56 -04:00
y = header.bottom_y,
2017-07-17 03:31:18 -04:00
spacing = _TEXT_SPACING_,
2016-08-11 23:25:56 -04:00
x_align = 'right',
text_color = schema.blue,
num_rows = 4,
}
TextColumn.set(info, _CR, 1, util.conky('$kernel'))
2017-07-17 03:31:18 -04:00
local update_dates = function(cr)
local yyyy, mm_dd = __string_match(util.execute_cmd(UPGRADE_CMD), DATE_REGEX)
2016-08-11 23:25:56 -04:00
TextColumn.set(info, cr, 3, mm_dd..'-'..yyyy)
2017-07-17 03:31:18 -04:00
yyyy, mm_dd = __string_match(util.execute_cmd(SYNC_CMD), DATE_REGEX)
2016-08-11 23:25:56 -04:00
TextColumn.set(info, cr, 4, mm_dd..'-'..yyyy)
end
2017-07-17 03:31:18 -04:00
local update_uptime = function(cr)
2016-08-11 23:25:56 -04:00
TextColumn.set(info, cr, 2, util.conky('$uptime'))
end
2017-07-17 03:31:18 -04:00
update_dates(_CR)
2016-08-11 23:25:56 -04:00
Widget = nil
schema = nil
2017-07-17 03:31:18 -04:00
_TEXT_SPACING_ = nil
2016-08-11 23:25:56 -04:00
_CR = nil
local draw = function(cr, current_interface, trigger)
2017-07-17 03:31:18 -04:00
update_uptime(cr)
if trigger == 0 then update_dates(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