From: Luke Bonham Date: Mon, 18 Nov 2013 19:01:09 +0000 (-0800) Subject: Merge pull request #12 from kurumushi/patch-1 X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/708d85fe06d257f7926b5062752405f75dffd93a?hp=fec60d0af7d25b99d7f45ff94438e9d3f0f77ddf Merge pull request #12 from kurumushi/patch-1 Change io.popen to io.open so we don't execute image files. --- diff --git a/widgets/yawn/init.lua b/widgets/yawn/init.lua index 38b741a..e7aa75d 100644 --- a/widgets/yawn/init.lua +++ b/widgets/yawn/init.lua @@ -1,4 +1,3 @@ - --[[ Licensed under GNU General Public License v2 @@ -115,7 +114,7 @@ local function fetch_weather() sky = sky .. forecast:gsub(" ", ""):gsub("/", "") .. ".png" -- In case there's no defined icon for current forecast - f = io.popen(sky) + f = io.open(sky) if f == nil then sky = icon_path .. "na.png" else