aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.xprofile18
1 files changed, 18 insertions, 0 deletions
diff --git a/.xprofile b/.xprofile
index d8fd32b..7a0ee89 100644
--- a/.xprofile
+++ b/.xprofile
@@ -38,6 +38,24 @@ 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 conky
+if [ -x /usr/bin/conky ]; then
+ /usr/bin/conky -X "$DISPLAY" -c .config/conky/$(hostname)-network.conf &
+ /usr/bin/conky -X "$DISPLAY" -c .config/conky/$(hostname)-general.conf &
+fi
+
+# start redshift
+if [ -x /usr/bin/redshift ]; then
+ /usr/bin/redshift -c .config/redshift.conf &
+ /usr/bin/redshift-gtk &
+fi
+
# start a termite terminal
if [ -x /usr/bin/termite ]; then
termite &