17 lines
300 B
Text
17 lines
300 B
Text
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
export PATH="$PATH:$HOME/.scripts"
|
|
|
|
export EDITOR="/usr/bin/vim"
|
|
export TERMINAL="/usr/bin/urxvt"
|
|
export BROWSER="/usr/bin/firefox"
|
|
|
|
# mamby use a prompt asking about startx?
|
|
if [[ "$(tty)" = "/dev/tty1" ]]; then
|
|
pgrep i3 || exec startx
|
|
fi
|
|
|