X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/a2d553c9b6f59e3da9f25221dfb42ba4053acb44..bb3e0cb61d1e09bdc3f4c08fdb752c727c0f79a3:/widgets/temp.lua?ds=inline

diff --git a/widgets/temp.lua b/widgets/temp.lua
index 61a9aa5..67c9456 100644
--- a/widgets/temp.lua
+++ b/widgets/temp.lua
@@ -10,7 +10,7 @@ local newtimer     = require("lain.helpers").newtimer
 
 local wibox        = require("wibox")
 
-local io           = io
+local io           = { open = io.open }
 local tonumber     = tonumber
 
 local setmetatable = setmetatable
@@ -21,7 +21,7 @@ local temp = {}
 
 local function worker(args)
     local args     = args or {}
-    local timeout  = args.timeout or 5
+    local timeout  = args.timeout or 2
     local tempfile = args.tempfile or "/sys/class/thermal/thermal_zone0/temp"
     local settings = args.settings or function() end