9 lines
158 B
Bash
9 lines
158 B
Bash
emulate sh -c 'source /etc/profile'
|
|
|
|
export PATH="${PATH}:${HOME}/.bin"
|
|
export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
|
|
|
|
if [ `tty` = /dev/tty1 ]; then
|
|
startx
|
|
fi
|