diff options
Diffstat (limited to 'base')
-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 |