diff options
Diffstat (limited to 'phenon/xinitrc')
-rw-r--r-- | phenon/xinitrc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/phenon/xinitrc b/phenon/xinitrc new file mode 100644 index 0000000..3fbe483 --- /dev/null +++ b/phenon/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-swc -c -f -D 3 -m 0.85 -e 0.8 -i 0.9 --unredir-if-possible --paint-on-overlay --backend glx --glx-swap-method 3 --glx-no-rebind-pixmap --refresh-rate 60 -b & +conky & + +exec startxfce4 |