[xinitrc] Correct path of redshift config

This commit is contained in:
M1dgard 2018-11-04 00:26:19 +01:00
parent f1ec0e0f3a
commit ea3d8fd73d
Signed by untrusted user who does not match committer: midgard
GPG Key ID: 511C112F1331BBB4
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ case "$DE_CHOICE" in
i3)
XDG_CONFIG_HOME=$HOME/.config
compton --config $XDG_CONFIG_HOME/compton/config &>$HOME/.log/my-i3-desktop/compton.log & # compositor
dunst -config $XDG_CONFIG_HOME/dunst/dunstrc &>$HOME/.log/my-i3-desktop/dunst.log & # notification daemon
redshift -c $XDG_CONFIG_HOME/redshift.config &>$HOME/.log/my-i3-desktop/redshift.log & # colour temperature adjuster
compton --config $XDG_CONFIG_HOME/compton/config &>$HOME/.log/my-i3-desktop/compton.log & # compositor
dunst -config $XDG_CONFIG_HOME/dunst/dunstrc &>$HOME/.log/my-i3-desktop/dunst.log & # notification daemon
redshift -c $XDG_CONFIG_HOME/redshift.conf &>$HOME/.log/my-i3-desktop/redshift.log & # colour temperature adjuster
exec i3
;;