mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 14:00:47 -05:00
11 lines
145 B
Bash
11 lines
145 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
. ~/.profile
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
|
|
exec startx
|
|
fi
|
|
|