diff options
author | Kyle Kaminski <kyle@xenomedia.com> | 2014-08-17 18:18:08 -0500 |
---|---|---|
committer | Kyle Kaminski <kyle@xenomedia.com> | 2014-08-17 18:18:08 -0500 |
commit | 6ae7ecf02379eac1d159858c20654b4956a097d7 (patch) | |
tree | b9726889ad75cce6d08a39a8d0c72874ea2dc6d7 /macbook | |
parent | 293818e6ec0ef677c50985fc0386ff4bb12aa306 (diff) | |
download | configs-6ae7ecf02379eac1d159858c20654b4956a097d7.tar.gz configs-6ae7ecf02379eac1d159858c20654b4956a097d7.tar.bz2 configs-6ae7ecf02379eac1d159858c20654b4956a097d7.zip |
macbook xinitrc
Diffstat (limited to 'macbook')
-rw-r--r-- | macbook/xinitrc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/macbook/xinitrc b/macbook/xinitrc new file mode 100644 index 0000000..425b1a9 --- /dev/null +++ b/macbook/xinitrc @@ -0,0 +1,18 @@ +#!/bin/sh +# +# ~/.xinitrc +# +# Executed by startx (run your window manager from here) + +if [ -d /etc/X11/xinit/xinitrc.d ]; then + for f in /etc/X11/xinit/xinitrc.d/*; do + [ -x "$f" ] && . "$f" + done + unset f +fi + +udiskie & +#compton --vsync opengl -c -f -D 3 -m 0.85 -e 0.8 --unredir-if-possible --paint-on-overlay --glx-swap-method 3 --refresh-rate 60 -b & +# dual monitors +compton -c -f -D 3 -m 0.85 -e 0.8 --unredir-if-possible --paint-on-overlay --glx-swap-method 3 -b & +exec startxfce4 |