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 setmetatable = setmetatable
|
||||||
|
|
||||||
local naughty = require("naughty")
|
|
||||||
-- PulseAudio volume
|
-- PulseAudio volume
|
||||||
-- lain.widgets.pulseaudio
|
-- lain.widgets.pulseaudio
|
||||||
local pulseaudio = {}
|
local pulseaudio = {}
|
||||||
|
@ -30,6 +29,7 @@ local function worker(args)
|
||||||
pulseaudio.widget = wibox.widget.textbox('')
|
pulseaudio.widget = wibox.widget.textbox('')
|
||||||
|
|
||||||
function pulseaudio.update()
|
function pulseaudio.update()
|
||||||
|
if scallback then pulseaudio.cmd = scallback() end
|
||||||
local s = read_pipe(pulseaudio.cmd)
|
local s = read_pipe(pulseaudio.cmd)
|
||||||
|
|
||||||
volume_now = {}
|
volume_now = {}
|
||||||
|
@ -37,8 +37,6 @@ local function worker(args)
|
||||||
volume_now.right = tonumber(string.match(s, ":.-(%d+)%%"))
|
volume_now.right = tonumber(string.match(s, ":.-(%d+)%%"))
|
||||||
volume_now.muted = string.match(s, "muted: (%S+)")
|
volume_now.muted = string.match(s, "muted: (%S+)")
|
||||||
|
|
||||||
if scallback then pulseaudio.sink = scallback() end
|
|
||||||
|
|
||||||
widget = pulseaudio.widget
|
widget = pulseaudio.widget
|
||||||
settings()
|
settings()
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue