diff --git a/init.lua b/init.lua index d8a293a..ebfdb32 100644 --- a/init.lua +++ b/init.lua @@ -11,6 +11,7 @@ -- Copyright (C) 2017 mutlusun -- Copyright (C) 2018 Beniamin Kalinowski -- Copyright (C) 2018,2020 Nguyễn Gia Phong +-- Copyright (C) 2022 Constantin Piber -- -- This file is part of Vicious. -- @@ -38,6 +39,14 @@ local table = { remove = table.remove } local helpers = require("vicious.helpers") +local dstatus, debug = pcall(require, "gears.debug") +local stderr = io.stderr +local warn +if dstatus then + warn = debug.print_warning +else + warn = function (msg) stderr:write("Warning (vicious): ", msg, "\n") end +end -- Vicious: widgets for the awesome window manager local vicious = {} @@ -132,7 +141,8 @@ local function update(widget, reg, disablecache) reg.warg, function(data) update_cache(data, update_time, c) - update_value(data) + local status, res = pcall(update_value, data) + if not status then warn(res) end reg.lock=false end) end