diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-10-30 10:05:58 -0700 |
---|---|---|
committer | Jesse Morgan <morganjm@amazon.com> | 2013-10-30 10:05:58 -0700 |
commit | 6eff68c149c1014288074eea255cd2ccfe05ecf3 (patch) | |
tree | ca77a43972c306bcb0bbc63a60528b8b36caa743 | |
parent | 84e50198e853d8c462b5794312afead8b163dc91 (diff) |
Sourcing shell_paths at X login
-rw-r--r-- | base/xsession | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/base/xsession b/base/xsession index 17a71ae..84e8af6 100644 --- a/base/xsession +++ b/base/xsession @@ -2,6 +2,15 @@ export TERMINAL=urxvt export EDITOR=vim +if [ -f ~/.shell_pathes ]; then + source ~/.shell_pathes +fi + +# Host Specific Settings +if [ -f ~/.host-specific/shell_pathes ]; then + source ~/.host-specific/shell_pathes +fi + # Some X Stuff xsetroot -solid "#333333" ulimit -c unlimited |