.xsessionrc

Sun, 15 Jun 2014 19:42:06 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 15 Jun 2014 19:42:06 -0400
changeset 63
4c151c56b0b8
parent 57
8af5835e43e1
child 65
9c8f98eb7e1b
permissions
-rw-r--r--

Fix font

#!/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/urxvtd ]; then
  /usr/bin/urxvtd -q -o -f
fi

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


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

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

mercurial