11 lines
134 B
Bash
11 lines
134 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [ $(basename $(exec tty)) == tty1 ]
|
|
then
|
|
exec startx >/dev/null 2>&1
|
|
fi
|