mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
12 lines
165 B
Text
12 lines
165 B
Text
#
|
|
# ~/.bash_profile
|
|
#
|
|
. ~/.profile
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
|
|
exec startx
|
|
fi
|
|
|
|
export EDITOR=emacs
|