.xsessionrc

Mon, 16 Jun 2014 20:34:34 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 16 Jun 2014 20:34:34 -0400
branch
mhoward-lt
changeset 66
1c1237f8b9e3
parent 64
a5ac7a1a2aaa
child 70
431128b5fa0c
permissions
-rwxr-xr-x

oops, that's not a comment

#!/bin/bash

if [ -d ~/bin ]; then
  export PATH="$HOME/bin:$PATH"
fi

if [ -d ~/.plenv ]; then
  export PATH="$HOME/.plenv/bin:$PATH"
  eval "$( plenv init - )"
fi

if [ -d ~/.rbenv ]; then
  export PATH="$HOME/.rbenv/bin:$PATH"
  eval "$( rbenv init - )"
fi


if [ -x /usr/bin/xcompmgr ]; then
  /usr/bin/xcompmgr -n &>/dev/null </dev/null &
fi

/usr/bin/xmodmap ~/.xmodmaprc

if [ -r ~/.Xdefaults.local ]; then
  /usr/bin/xrdb -quiet -merge -cpp /usr/bin/cpp -DUSE_LOCAL ~/.Xdefaults
fi

if [ -x /usr/bin/urxvtd ]; then
  /usr/bin/urxvtd -q -o -f
fi

if [ -r ~/.xsessionrc.local ]; then
  . ~/.xsessionrc.local
fi

mercurial