From: copycat-killer Date: Tue, 24 Jan 2017 17:19:15 +0000 (+0100) Subject: #250 missing file patch X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/d9877c4bedca550478507f268f43e137e4454c24 #250 missing file patch --- diff --git a/widgets/alsa.lua b/widgets/alsa.lua index c86db33..96f30b3 100644 --- a/widgets/alsa.lua +++ b/widgets/alsa.lua @@ -46,11 +46,9 @@ local function worker(args) end) end - timer_id = string.format("alsa-%s-%s", alsa.cmd, alsa.channel) + helpers.newtimer(string.format("alsa-%s-%s", alsa.cmd, alsa.channel), timeout, alsa.update) - helpers.newtimer(timer_id, timeout, alsa.update) - - return alsa + return setmetatable(alsa, { __index = alsa.widget }) end return setmetatable(alsa, { __call = function(_, ...) return worker(...) end }) diff --git a/widgets/alsabar.lua b/widgets/alsabar.lua index 219ad96..a4c63ea 100644 --- a/widgets/alsabar.lua +++ b/widgets/alsabar.lua @@ -124,9 +124,7 @@ local function worker(args) end) end - timer_id = string.format("alsabar-%s-%s", alsabar.cmd, alsabar.channel) - - helpers.newtimer(timer_id, timeout, alsabar.update) + helpers.newtimer(string.format("alsabar-%s-%s", alsabar.cmd, alsabar.channel), timeout, alsabar.update) return alsabar end diff --git a/widgets/bat.lua b/widgets/bat.lua index ea749d3..8b62790 100644 --- a/widgets/bat.lua +++ b/widgets/bat.lua @@ -120,31 +120,35 @@ local function worker(args) bat_now.ac_status = tonumber(first_line(string.format("%s%s/online", pspath, ac))) or "N/A" if bat_now.status ~= "N/A" then + if bat_now.status ~= "Full" and sum_rate_power == 0 and bat_now.ac_status == 1 then + bat_now.perc = math.floor(math.min(100, (sum_energy_now / sum_energy_full) * 100)) + bat_now.time = "00:00" + bat_now.watt = 0 + -- update {perc,time,watt} iff battery not full and rate > 0 - if bat_now.status ~= "Full" and (sum_rate_power > 0 or sum_rate_current > 0) then + elseif bat_now.status ~= "Full" then local rate_time = 0 - local div = (sum_rate_power > 0 and sum_rate_power) or sum_rate_current - - if bat_now.status == "Charging" then - rate_time = (sum_energy_full - sum_energy_now) / div - else -- Discharging - rate_time = sum_energy_now / div - end - - if 0 < rate_time and rate_time < 0.01 then -- check for magnitude discrepancies (#199) - rate_time_magnitude = math.abs(math.floor(math.log10(rate_time))) - rate_time = rate_time * 10^(rate_time_magnitude - 2) - end + -- Calculate time and watt if rates are greater then 0 + if (sum_rate_power > 0 or sum_rate_current > 0) then + local div = (sum_rate_power > 0 and sum_rate_power) or sum_rate_current + + if bat_now.status == "Charging" then + rate_time = (sum_energy_full - sum_energy_now) / div + else -- Discharging + rate_time = sum_energy_now / div + end + + if 0 < rate_time and rate_time < 0.01 then -- check for magnitude discrepancies (#199) + rate_time_magnitude = math.abs(math.floor(math.log10(rate_time))) + rate_time = rate_time * 10^(rate_time_magnitude - 2) + end + end local hours = math.floor(rate_time) local minutes = math.floor((rate_time - hours) * 60) bat_now.perc = math.floor(math.min(100, (sum_energy_now / sum_energy_full) * 100)) bat_now.time = string.format("%02d:%02d", hours, minutes) bat_now.watt = tonumber(string.format("%.2f", sum_rate_energy / 1e6)) - elseif bat_now.status ~= "Full" and sum_rate_power == 0 and bat_now.ac_status == 1 then - bat_now.perc = math.floor(math.min(100, (sum_energy_now / sum_energy_full) * 100)) - bat_now.time = "00:00" - bat_now.watt = 0 elseif bat_now.status == "Full" then bat_now.perc = 100 bat_now.time = "00:00" @@ -171,9 +175,9 @@ local function worker(args) end end - newtimer(battery, timeout, bat.update) - - return bat + newtimer("batteries", timeout, bat.update) + + return setmetatable(bat, { __index = bat.widget }) end return setmetatable({}, { __call = function(_, ...) return worker(...) end }) diff --git a/widgets/cpu.lua b/widgets/cpu.lua index 8501388..f7fb087 100644 --- a/widgets/cpu.lua +++ b/widgets/cpu.lua @@ -77,7 +77,7 @@ local function worker(args) newtimer("cpu", timeout, update) - return cpu.widget + return setmetatable(cpu, { __index = cpu.widget }) end return setmetatable(cpu, { __call = function(_, ...) return worker(...) end }) diff --git a/widgets/mem.lua b/widgets/mem.lua index 443047c..e96dc1b 100644 --- a/widgets/mem.lua +++ b/widgets/mem.lua @@ -50,7 +50,7 @@ local function worker(args) newtimer("mem", timeout, update) - return mem.widget + return setmetatable(mem, { __index = mem.widget }) end return setmetatable(mem, { __call = function(_, ...) return worker(...) end }) diff --git a/widgets/mpd.lua b/widgets/mpd.lua index ac4fd5f..df26422 100644 --- a/widgets/mpd.lua +++ b/widgets/mpd.lua @@ -128,7 +128,7 @@ local function worker(args) mpd.timer = helpers.newtimer("mpd", timeout, mpd.update, true, true) - return mpd + return setmetatable(mpd, { __index = imap.widget }) end return setmetatable(mpd, { __call = function(_, ...) return worker(...) end }) diff --git a/widgets/net.lua b/widgets/net.lua index 81345fc..0b19f0b 100644 --- a/widgets/net.lua +++ b/widgets/net.lua @@ -12,7 +12,6 @@ local naughty = require("naughty") local wibox = require("wibox") local string = { format = string.format, match = string.match } -local tostring = tostring local setmetatable = setmetatable -- Network infos @@ -118,9 +117,9 @@ local function worker(args) settings() end - helpers.newtimer("net-" .. tostring(net.iface), timeout, update) + helpers.newtimer("network", timeout, update) - return net + return setmetatable(net, { __index = net.widget }) end return setmetatable({}, { __call = function(_, ...) return worker(...) end }) diff --git a/widgets/pulseaudio.lua b/widgets/pulseaudio.lua index f2d63d6..3178dcf 100644 --- a/widgets/pulseaudio.lua +++ b/widgets/pulseaudio.lua @@ -52,7 +52,7 @@ local function worker(args) end) end - helpers.newtimer(string.format("pulseaudio-%s", timeout), timeout, pulseaudio.update) + helpers.newtimer("pulseaudio", timeout, pulseaudio.update) return setmetatable(pulseaudio, { __index = pulseaudio.widget }) end diff --git a/widgets/pulsebar.lua b/widgets/pulsebar.lua index 284b886..8cf8566 100644 --- a/widgets/pulsebar.lua +++ b/widgets/pulsebar.lua @@ -136,10 +136,7 @@ local function worker(args) end) end - - timer_id = string.format("pulsebar-%s", pulsebar.sink) - - helpers.newtimer(timer_id, timeout, pulsebar.update) + helpers.newtimer(string.format("pulsebar-%s", pulsebar.sink), timeout, pulsebar.update) return pulsebar end diff --git a/widgets/sysload.lua b/widgets/sysload.lua index 215fd62..041feb1 100644 --- a/widgets/sysload.lua +++ b/widgets/sysload.lua @@ -36,7 +36,8 @@ local function worker(args) end newtimer("sysload", timeout, update) - return sysload.widget + + return setmetatable(sysload, { __index = sysload.widget }) end return setmetatable(sysload, { __call = function(_, ...) return worker(...) end }) diff --git a/widgets/temp.lua b/widgets/temp.lua index cdf3002..e769b25 100644 --- a/widgets/temp.lua +++ b/widgets/temp.lua @@ -39,7 +39,7 @@ local function worker(args) newtimer("coretemp", timeout, update) - return temp.widget + return setmetatable(temp, { __index = temp.widget }) end return setmetatable(temp, { __call = function(_, ...) return worker(...) end }) diff --git a/wiki b/wiki index df5dd68..7e48658 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit df5dd684ec35c1fc8e044fb5fd0bdb76f7f568fa +Subproject commit 7e4865822c669a86007d88bf6ae846a95c5eed5f