Pacman widget updated for pacman 3.3.
Pacman 3.3 returns one package on a line, without any other information. So now we count lines, while before the list of packages was provided on one line along with the number of updates - so we didn't have to count them. Old code was commented out, and is waiting for removal.
This commit is contained in:
parent
b46278a746
commit
f14280bf9c
20
pacman.lua
20
pacman.lua
|
@ -20,17 +20,23 @@ function worker(format)
|
||||||
local f = io.popen("pacman -Qu")
|
local f = io.popen("pacman -Qu")
|
||||||
|
|
||||||
-- Initialise updates
|
-- Initialise updates
|
||||||
local updates = nil
|
local updates = 0
|
||||||
|
|
||||||
-- Get data
|
-- Get data
|
||||||
for line in f:lines() do
|
for line in f:lines() do
|
||||||
-- If there are 'Targets:' then updates are available,
|
-- Pacman 3.3 returns one package on a line, without any extra
|
||||||
-- number is provided, we don't have to count packages
|
-- information
|
||||||
updates = line:match("^Targets[%s]%(([%d]+)%)") or 0
|
updates = updates + 1
|
||||||
|
|
||||||
|
-- Pacman 3.2 returns 'Targets:' followed by a number of
|
||||||
|
-- available updates and a list of packages all on one
|
||||||
|
-- line. Since the number is provided we don't have to count
|
||||||
|
-- them
|
||||||
|
--updates = line:match("^Targets[%s]%(([%d]+)%)") or 0
|
||||||
-- If the count changed then break out of the loop
|
-- If the count changed then break out of the loop
|
||||||
if tonumber(updates) > 0 then
|
--if tonumber(updates) > 0 then
|
||||||
break
|
-- break
|
||||||
end
|
--end
|
||||||
end
|
end
|
||||||
f:close()
|
f:close()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue