From feb67f2e7c487125d6814095c549a528863e2938 Mon Sep 17 00:00:00 2001 From: kurumushi Date: Tue, 19 Nov 2013 01:16:36 +0900 Subject: [PATCH 1/1] Change io.popen to io.open so we don't execute image files. --- widgets/yawn/init.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.39.2