aboutsummaryrefslogtreecommitdiff
path: root/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'widgets')
-rw-r--r--widgets/hddtemp.lua2
-rw-r--r--widgets/raid.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/widgets/hddtemp.lua b/widgets/hddtemp.lua
index 7559512..687ced1 100644
--- a/widgets/hddtemp.lua
+++ b/widgets/hddtemp.lua
@@ -17,7 +17,7 @@ module("vicious.widgets.hddtemp")
-- {{{ HDD Temperature widget type
local function worker(format, warg)
- -- Fallback to default hddtemp warg
+ -- Fallback to default hddtemp port
if warg == nil then warg = 7634 end
local hdd_temp = {} -- Get info from the hddtemp daemon
diff --git a/widgets/raid.lua b/widgets/raid.lua
index a714fb0..c1b7e02 100644
--- a/widgets/raid.lua
+++ b/widgets/raid.lua
@@ -44,7 +44,7 @@ local function worker(format, warg)
elseif string.sub(line, 1, string.len(warg)) == warg then
mddev[warg]["found"] = true
- for i in string.gmatch(line, "%[%d%]") do
+ for i in string.gmatch(line, "%[[%d]%]") do
mddev[warg]["assigned"] = mddev[warg]["assigned"] + 1
end
end