Add redshift to startup if it exists

This commit is contained in:
Marty Oehme 2019-11-17 23:29:09 +01:00
parent 4cd3feda3a
commit b3db50f03b

View file

@ -57,6 +57,8 @@ type unclutter >/dev/null 2>&1 && unclutter &
type compton >/dev/null 2>&1 && compton &
# same deal with flashfocus as our active window indicator
type flashfocus >/dev/null 2>&1 && flashfocus -l never &
# if redshift is installed run it
type redshift >/dev/null 2>&1 && redshift &
# if sxhkd - the key-binding daemon is installed, start it up
type sxhkd >/dev/null 2>&1 && sxhkd &