dotfiles/.bash_profile

14 lines
199 B
Bash
Raw Normal View History

2021-04-15 22:45:15 +00:00
#
# ~/.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"