12 lines
204 B
Bash
12 lines
204 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
if [ -d "$HOME/.local/bin" ] ; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
|
|
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
|
|
exec startx
|
|
fi
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|