Merge pull request #266 from aajjbb/fix-redshift-typo

fixing redshit spawn_with_shell to be compliant with awesome v4.0
This commit is contained in:
Luke Bonham 2017-01-12 21:56:10 +01:00 committed by GitHub
commit 3a2e5e0a8a
1 changed files with 2 additions and 2 deletions

View File

@ -25,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
awful.spawn_with_shell("redshift -x")
awful.spawn.with_shell("redshift -x")
-- (Re)start redshift
awful.spawn_with_shell("redshift")
awful.spawn.with_shell("redshift")
running = true
active = true
end