10 lines
131 B
Bash
10 lines
131 B
Bash
|
#
|
||
|
# ~/.bash_profile
|
||
|
#
|
||
|
|
||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||
|
|
||
|
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||
|
exec startx
|
||
|
fi
|