]> git.friedersdorff.com Git - max/dotfiles.git/blob - X/.xinitrc
feat: Use mutt for mailto links
[max/dotfiles.git] / X / .xinitrc
1 #!/bin/bash
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   magnesium|platinum|plutonium)
20     exec i3
21     ;;
22   *)
23     exec ratpoison
24     ;;
25 esac
26
27
28
29 # vim: set expandtab tabstop=2 smarttab: