FIX formating issue in proc table

This commit is contained in:
Nathan Dwarshuis 2019-10-12 11:42:44 -04:00
parent 821b219f34
commit 0fe00472d3
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ local update = function(cr)
local pid = conky(TABLE_CONKY[r].pid, '(%d+)') -- may have leading spaces
if pid ~= '' then
local cpu = conky(TABLE_CONKY[r].cpu)
local comm = Util.read_file('/proc/'..pid..'/comm')
local comm = Util.read_file('/proc/'..pid..'/comm', '(%C+)')
Table.set(tbl, cr, 1, r, comm)
Table.set(tbl, cr, 2, r, pid)
Table.set(tbl, cr, 3, r, cpu)