.xsessionrc

Fri, 13 Jun 2014 13:21:31 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 13 Jun 2014 13:21:31 -0400
changeset 51
f93e63d400b5
parent 42
68940b625e5e
child 52
ab3e58416aa0
permissions
-rw-r--r--

no need to fork

#!/bin/bash

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 [ -r ~/.xsessionrc.local ]; then
  . ~/.xsessionrc.local
fi

mercurial