summaryrefslogtreecommitdiff
path: root/.profile
blob: 7ed9008f9a8bbb7fe9a5850fdd77676174a8ab5d (plain)
1
2
3
4
5
6
7
8
9
10
# ~/.profile

export PATH=~/bin:$PATH:~/go/bin

[ "${SHELL##*/}" = bash ] && [ -f ~/.bashrc ] && . ~/.bashrc

# Last action: auto start X11 when logged on first terminal
case $HOSTNAME in
(swift) [ "$(tty)" != /dev/tty1 ] || exec startx ;;
esac