diff options
-rw-r--r-- | .xprofile | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -38,11 +38,10 @@ if [ -x /usr/bin/xautolock -a -x /usr/bin/i3lock ]; then -locker "/usr/bin/i3lock -n -e -c 000000 -f" & fi -## start compton -## TODO: configuration file needs to be revised, messes with xrandr -#if [ -x /usr/bin/compton -a -a /sys/kernel/realtime ]; then -# /usr/bin/compton -b -d "$DISPLAY" & -#fi +# start compton +if [ -x /usr/bin/compton -a ! -a /sys/kernel/realtime ]; then + /usr/bin/compton -d "$DISPLAY" -CGb & +fi # start conky if [ -x /usr/bin/conky ]; then @@ -52,7 +51,6 @@ fi # start redshift if [ -x /usr/bin/redshift ]; then - /usr/bin/redshift -c .config/redshift.conf & /usr/bin/redshift-gtk & fi |