diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-07-31 15:34:17 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-07-31 15:34:17 -0400 |
| commit | 9df046c5a8a3c8928deba23d38eee0ee1c519e24 (patch) | |
| tree | 385edbf3f2759865e47194a80abcc23154cc1be5 /.profile | |
| parent | 0f632bc0a9bba151286baf09a26dc1f7670ee942 (diff) | |
| download | eibhear-9df046c5a8a3c8928deba23d38eee0ee1c519e24.tar.gz eibhear-9df046c5a8a3c8928deba23d38eee0ee1c519e24.tar.zst eibhear-9df046c5a8a3c8928deba23d38eee0ee1c519e24.zip | |
bashrc sourced in profile after var sets
Diffstat (limited to '.profile')
| -rw-r--r-- | .profile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
