X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;ds=sidebyside;f=states%2Fxfce%2Ffiles%2Fxinitrc;fp=states%2Fxfce%2Ffiles%2Fxinitrc;h=50daba13d07f0b14f047688598be3b04674da222;hb=14ca028e103a3078551a63888912afe332625cdc;hp=0000000000000000000000000000000000000000;hpb=772d02d82c24876d0f6dae866feb69103251cbc7;p=max%2Fsaltfiles.git diff --git a/states/xfce/files/xinitrc b/states/xfce/files/xinitrc new file mode 100644 index 0000000..50daba1 --- /dev/null +++ b/states/xfce/files/xinitrc @@ -0,0 +1,24 @@ +#!/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 + +# Source ~/.xprofile +[ -f /etc/xprofile ] && . /etc/xprofile +[ -f ~/.xprofile ] && . ~/.xprofile +case $HOSTNAME in + *) + exec startxfce4 + ;; +esac + +# vim: set expandtab tabstop=2 smarttab: