Update .vimrc
[dotfiles.git] / .xinitrc
1 #!/bin/sh
2
3 if [ -d /etc/X11/xinit/xinitrc.d ]; then
4 for f in /etc/X11/xinit/xinitrc.d/*; do
5 [ -x "$f" ] && . "$f"
6 done
7 unset f
8 fi
9
10 urxvtd -q -o -f
11
12 sh ~/.fehbg &
13
14 xset +fp /usr/local/lib/X11/fonts/terminus
15 xset fp rehash
16 #xbindkeys &
17 xcalib .colorprofiles/macbookpro83.icc &
18 xsetroot -cursor_name left_ptr &
19 xrdb ~/.Xresources &
20
21 export WM="xmonad" &
22 export TERM="rxvt-unicode" &
23
24 # this goes in .bash_profile
25 #export EDITOR="vim" &
26 #export PATH=$(cope_path):$PATH &
27 #export PATH=~/golang/bin:$PATH &
28 #export PATH=$PATH:$HOME/bin &
29 #export GOPATH=~/golang &
30 #export CVSROOT=anoncvs@mirror.planetunix.net:/cvs &
31 #export PKG_PATH=ftp://mirror.planetunix.net/pub/OpenBSD/snapshots/packages/amd64/ &
32
33 exec /home/kremlin/.cabal/bin/xmonad
34