blob: ac667e7b7af5420a25e60eda7552c246ea15aba6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# .bash_profile
# Get the aliases and functions
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
# Start X11 automatically on TTY1 login
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
exec startx
fi
|