]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/xfce/files/xinitrc
Merge branch 'master' of git.friedersdorff.com:max/saltfiles into master
[max/saltfiles.git] / states / xfce / files / xinitrc
1 #!/bin/sh
2 #
3 # ~/.xinitrc
4 #
5 # Executed by startx (run your window manager from here)
6
7
8 if [ -d /etc/X11/xinit/xinitrc.d ]; then
9   for f in /etc/X11/xinit/xinitrc.d/*; do
10     [ -x "$f" ] && . "$f"
11   done
12   unset f
13 fi
14
15 # Source ~/.xprofile
16 [ -f /etc/xprofile ] && . /etc/xprofile
17 [ -f ~/.xprofile ] && . ~/.xprofile
18 case $HOSTNAME in
19   *)
20     exec startxfce4
21     ;;
22 esac
23
24 # vim: set expandtab tabstop=2 smarttab: