mirror of https://github.com/lcpz/lain.git
#169 typos fixed
This commit is contained in:
parent
7121c9ab50
commit
e386dbb719
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue