mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
11 lines
206 B
Bash
11 lines
206 B
Bash
# .bash_profile
|
|
|
|
[ -f $HOME/.profile ] && . $HOME/.profile
|
|
|
|
# Get the aliases and functions
|
|
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|
|
|
|
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
|
|
exec startx
|
|
fi
|