blob: 0db42b47d4b123e28df4c8ef152e2d488ce9049d (
plain)
1
2
3
4
5
6
7
8
9
10
|
# ~/.profile
PATH=~/bin:$PATH:~/go/bin
[ "${SHELL##*/}" = bash ] && . ~/.bashrc
# Last action: auto start X11 when logged on first console
case $HOSTNAME in
(swift) [ "$(tty)" != /dev/tty1 ] || exec startx ;;
esac
|