aboutsummaryrefslogtreecommitdiff
path: root/volume.lua
diff options
context:
space:
mode:
Diffstat (limited to 'volume.lua')
-rw-r--r--volume.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/volume.lua b/volume.lua
index f5b832f..16d4682 100644
--- a/volume.lua
+++ b/volume.lua
@@ -4,6 +4,7 @@
---------------------------------------------------
-- {{{ Grab environment
+local tonumber = tonumber
local io = { popen = io.popen }
local setmetatable = setmetatable
local string = {
@@ -24,8 +25,8 @@ local function worker(format, channel)
local mixer = f:read("*all")
f:close()
- local vol = string.match(mixer, "([%d]?[%d]?[%d])%%")
- -- If muted return 0 (not "Mute") so we dont break progressbars
+ local vol = tonumber(string.match(mixer, "([%d]?[%d]?[%d])%%"))
+ -- If mute return 0 (not "Mute") so we don't break progressbars
if string.find(mixer, "%[off%]") or vol == nil then
vol = 0
end