ENH use faster pid comm lookup method

This commit is contained in:
Nathan Dwarshuis 2019-10-12 10:04:45 -04:00
parent b9a140d445
commit 0e54fd1eda
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ local update = function(cr)
local pid = conky(TABLE_CONKY[r].pid, '(%S+)')
if pid ~= '' then
local cpu = conky(TABLE_CONKY[r].cpu)
local comm = Util.read_file('/proc/'..pid..'/stat', '%d+%s+%((.+)%)')
local comm = Util.read_file('/proc/'..pid..'/comm')
Table.set(tbl, cr, 1, r, comm)
Table.set(tbl, cr, 2, r, pid)
Table.set(tbl, cr, 3, r, cpu)