aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xaataaj.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/aataaj.lua b/aataaj.lua
index 3c1a89b..83f870b 100755
--- a/aataaj.lua
+++ b/aataaj.lua
@@ -200,7 +200,7 @@ APT.killEmAll = function(all)
200 local c = 0 200 local c = 0
201 while 0 ~= tonumber(APT.exe("pgrep -u $USER -xc " .. l):Do().result) do 201 while 0 ~= tonumber(APT.exe("pgrep -u $USER -xc " .. l):Do().result) do
202 local s = 'TERM' 202 local s = 'TERM'
203 if c > 0 then s = 'KILL' end 203 if c > 0 then s = 'KILL'; APT.exe("sleep " .. c):Do() end
204 print( "pkill -" .. s .. " -u $USER -x " .. l) 204 print( "pkill -" .. s .. " -u $USER -x " .. l)
205 APT.exe("pkill -" .. s .. " -u $USER -x " .. l):Do() 205 APT.exe("pkill -" .. s .. " -u $USER -x " .. l):Do()
206 c = c + 1 206 c = c + 1