clean up System.lua

This commit is contained in:
petrucci4prez 2017-07-17 23:33:56 -04:00
parent 2d1e4b3d9c
commit 1a0c875477
1 changed files with 4 additions and 5 deletions

View File

@ -7,9 +7,6 @@ local schema = require 'default_patterns'
local __string_match = string.match local __string_match = string.match
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"
local _TEXT_SPACING_ = 20 local _TEXT_SPACING_ = 20
local extract_date = function(cmd) local extract_date = function(cmd)
@ -53,8 +50,10 @@ local draw = function(cr, current_interface, log_is_changed)
TextColumn.set(info, cr, 2, util.conky('$uptime')) TextColumn.set(info, cr, 2, util.conky('$uptime'))
if log_is_changed then if log_is_changed then
TextColumn.set(info, cr, 3, extract_date(UPGRADE_CMD)) TextColumn.set(info, cr, 3, extract_date("sed -n "..
TextColumn.set(info, cr, 4, extract_date(SYNC_CMD)) "'/ starting full system upgrade/p' /var/log/pacman.log | tail -1"))
TextColumn.set(info, cr, 4, extract_date("sed -n "..
"'/ synchronizing package lists/p' /var/log/pacman.log | tail -1"))
end end
if current_interface == 0 then if current_interface == 0 then