diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-07-09 11:46:43 -0700 |
---|---|---|
committer | Jesse Morgan <morganjm@amazon.com> | 2013-07-09 11:52:11 -0700 |
commit | f721bf96dff1b1ba281b6a8e9286fdcbaced6a35 (patch) | |
tree | 6ff46e59861804e69d5de5d8e48feb48a9d4da7f | |
parent | f8eb5313430120cb3e092bf0643511595d6bd0e4 (diff) |
Now using different terminals on different machines
-rw-r--r-- | base/bashrc | 1 | ||||
-rw-r--r-- | base/xsession | 7 |
2 files changed, 3 insertions, 5 deletions
diff --git a/base/bashrc b/base/bashrc index b7f87f1..a462e48 100644 --- a/base/bashrc +++ b/base/bashrc @@ -103,7 +103,6 @@ if [ -f /etc/bash_completion ] && ! shopt -oq posix; then fi # Personal Settings -export TERMINAL=gnome-terminal export EDITOR=vim export MAILDIR=$HOME/.maildir/INBOX diff --git a/base/xsession b/base/xsession index 21abad0..17a71ae 100644 --- a/base/xsession +++ b/base/xsession @@ -1,6 +1,6 @@ # Set my editor and terminal -export EDITOR=vim export TERMINAL=urxvt +export EDITOR=vim # Some X Stuff xsetroot -solid "#333333" @@ -18,11 +18,10 @@ ulimit -c unlimited (sleep 5; nitrogen --restore) & gtk-theme-switch2 -i Ambiance xrdb $HOME/.Xresources -urxvtd -q -f -o # Host Specific Settings -if [ -f ~/.host-specific/xession ]; then - source ~/.host-specific/xsession +if [ -f $HOME/.host-specific/xsession ]; then + source $HOME/.host-specific/xsession fi # Make the i3 config |