bashrc sourced in profile after var sets
This commit is contained in:
parent
0f632bc0a9
commit
9df046c5a8
1 changed files with 2 additions and 2 deletions
4
.profile
4
.profile
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
# Profile file. Runs on login.
|
# Profile file. Runs on login.
|
||||||
|
|
||||||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
||||||
|
|
||||||
export PATH="$PATH:$HOME/.scripts"
|
export PATH="$PATH:$HOME/.scripts"
|
||||||
export EDITOR="vim"
|
export EDITOR="vim"
|
||||||
export TERMINAL="st"
|
export TERMINAL="st"
|
||||||
|
@ -11,6 +9,8 @@ export BROWSER="firefox"
|
||||||
export READER="zathura"
|
export READER="zathura"
|
||||||
export BIB="$HOME/Documents/LaTeX/uni.bib"
|
export BIB="$HOME/Documents/LaTeX/uni.bib"
|
||||||
|
|
||||||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||||||
|
|
||||||
# Start graphical server if i3 not already running.
|
# Start graphical server if i3 not already running.
|
||||||
if [[ "$(tty)" = "/dev/tty1" ]]; then
|
if [[ "$(tty)" = "/dev/tty1" ]]; then
|
||||||
pgrep -x i3 || exec startx
|
pgrep -x i3 || exec startx
|
||||||
|
|
Loading…
Reference in a new issue