X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/85ed92417dfca8fbdcfc89b7efb5308edd4d1193..61a2868452d9c4548dbf22c3119739e79f6ff902:/widgets/contrib/redshift.lua diff --git a/widgets/contrib/redshift.lua b/widgets/contrib/redshift.lua index 69247ee..0b54015 100644 --- a/widgets/contrib/redshift.lua +++ b/widgets/contrib/redshift.lua @@ -8,7 +8,6 @@ local awful = require("awful") local os = os -local spawn = awful.util.spawn_with_shell local setmetatable = setmetatable @@ -26,9 +25,9 @@ local function init() -- toggled off (i.e Awesome on-the-fly restart), kill redshift to make sure os.execute("pkill redshift") -- Remove existing color adjustment - spawn("redshift -x") + awful.util.spawn_with_shell("redshift -x") -- (Re)start redshift - spawn("redshift") + awful.util.spawn_with_shell("redshift") running = true active = true end