14 lines
199 B
Bash
14 lines
199 B
Bash
|
#
|
||
|
# ~/.bash_profile
|
||
|
#
|
||
|
|
||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||
|
|
||
|
# autostart systemd default session on tty1
|
||
|
if [[ "$(tty)" == '/dev/tty1' ]]; then
|
||
|
exec startx
|
||
|
fi
|
||
|
|
||
|
export PATH="$PATH:$HOME/.cargo/bin"
|
||
|
|