From 9df046c5a8a3c8928deba23d38eee0ee1c519e24 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Tue, 31 Jul 2018 15:34:17 -0400 Subject: [PATCH] bashrc sourced in profile after var sets --- .profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.profile b/.profile index 093800e..78e3642 100644 --- a/.profile +++ b/.profile @@ -2,8 +2,6 @@ # Profile file. Runs on login. -[[ -f ~/.bashrc ]] && . ~/.bashrc - export PATH="$PATH:$HOME/.scripts" export EDITOR="vim" export TERMINAL="st" @@ -11,6 +9,8 @@ export BROWSER="firefox" export READER="zathura" export BIB="$HOME/Documents/LaTeX/uni.bib" +[[ -f ~/.bashrc ]] && . ~/.bashrc + # Start graphical server if i3 not already running. if [[ "$(tty)" = "/dev/tty1" ]]; then pgrep -x i3 || exec startx