From a506dec0cf1e3155085e37766cf00c92ff17323b Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sat, 4 May 2019 12:36:19 -0400 Subject: [PATCH] Add .profile for graphical login --- bash/.bash_profile | 13 +------------ bash/.profile | 12 ++++++++++++ 2 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 bash/.profile diff --git a/bash/.bash_profile b/bash/.bash_profile index f17c971..499bf9e 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -6,15 +6,4 @@ [[ -f ~/.bash_local ]] && . ~/.bash_local -if [ -d ~/lola ]; -then - export LOLA_HOME=~/lola/lola-server - export MODELS_HOME=~/lola/models - export LOLA_TRAVEL_SERVICE_HOME=~/lola/lola-travel-service -fi - -export LEDGER_FILE="~/journal.ledger" -PATH="$PATH":"~/.local/bin":"~/bin/":"~/.gem/ruby/2.6.0/bin":"~/.gem/ruby/2.5.0/bin":"~/go/bin" - -EDITOR="$(which emacsclient)" -export EDITOR +[[ -f ~/.profile ]] && . ~/.profile diff --git a/bash/.profile b/bash/.profile new file mode 100644 index 0000000..06e6e77 --- /dev/null +++ b/bash/.profile @@ -0,0 +1,12 @@ +if [ -d ~/lola ]; +then + export LOLA_HOME=~/lola/lola-server + export MODELS_HOME=~/lola/models + export LOLA_TRAVEL_SERVICE_HOME=~/lola/lola-travel-service +fi + +export LEDGER_FILE="~/journal.ledger" +PATH="~/.local/bin":"~/bin/":"~/.gem/ruby/2.6.0/bin":"~/.gem/ruby/2.5.0/bin":"~/go/bin":"$PATH" + +EDITOR="$(which emacsclient)" +export EDITOR