aboutsummaryrefslogtreecommitdiff
path: root/bash/.bash_profile
blob: e0a3c862add44158f4e237f12fefd5ed133d1464 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# Source .bashrc
if [[ -f $HOME/.bashrc ]] ; then
	source $HOME/.bashrc
fi

# Automatically call `startx' upon login in on tty1, if AwesomeWM is not
# yet started
if [[ "$(tty)" = "/dev/tty1" ]]; then
    pgrep awesome || startx
fi