X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/85ed92417dfca8fbdcfc89b7efb5308edd4d1193..5d892e0ceb9d4dece6d2d61b2e5c4046bbc91e9f:/widgets/contrib/redshift.lua?ds=inline

diff --git a/widgets/contrib/redshift.lua b/widgets/contrib/redshift.lua
index 69247ee..3c4f749 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.spawn_with_shell("redshift -x")
     -- (Re)start redshift
-    spawn("redshift")
+    awful.spawn_with_shell("redshift")
     running = true
     active = true
 end