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

diff --git a/widgets/temp.lua b/widgets/temp.lua
index b55d52f..61a9aa5 100644
--- a/widgets/temp.lua
+++ b/widgets/temp.lua
@@ -22,12 +22,13 @@ local temp = {}
 local function worker(args)
     local args     = args or {}
     local timeout  = args.timeout or 5
+    local tempfile = args.tempfile or "/sys/class/thermal/thermal_zone0/temp"
     local settings = args.settings or function() end
 
     temp.widget = wibox.widget.textbox('')
 
     function update()
-        local f = io.open("/sys/class/thermal/thermal_zone0/temp")
+        local f = io.open(tempfile)
         if f ~= nil
         then
             coretemp_now = tonumber(f:read("*all")) / 1000