From: copycat-killer Date: Fri, 26 Feb 2016 10:49:44 +0000 (+0100) Subject: #169 typos fixed X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/e386dbb7196851dd348f71b3db601be2786c3324?hp=7121c9ab504508fce55314d59a835cfb10471569 #169 typos fixed --- diff --git a/widgets/pulseaudio.lua b/widgets/pulseaudio.lua index 3ce98d4..3ef26f0 100644 --- a/widgets/pulseaudio.lua +++ b/widgets/pulseaudio.lua @@ -15,7 +15,6 @@ local string = { match = string.match, local setmetatable = setmetatable -local naughty = require("naughty") -- PulseAudio volume -- lain.widgets.pulseaudio local pulseaudio = {} @@ -30,6 +29,7 @@ local function worker(args) pulseaudio.widget = wibox.widget.textbox('') function pulseaudio.update() + if scallback then pulseaudio.cmd = scallback() end local s = read_pipe(pulseaudio.cmd) volume_now = {} @@ -37,8 +37,6 @@ local function worker(args) volume_now.right = tonumber(string.match(s, ":.-(%d+)%%")) volume_now.muted = string.match(s, "muted: (%S+)") - if scallback then pulseaudio.sink = scallback() end - widget = pulseaudio.widget settings() end