dotfiles/.bash_profile

19 lines
298 B
Bash
Raw Normal View History

2020-06-25 05:48:14 +08:00
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
2022-06-26 08:12:10 +08:00
# custom scripts and programs
PATH="$HOME/.local/bin:$PATH"
PATH="$HOME/.config/scripts/bin:$PATH"
2020-06-25 05:48:14 +08:00
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
if [[ ! -z "$IS_LAPTOP" ]]; then
exec startx
else
exec start-sway.sh
fi
2020-06-25 05:48:14 +08:00
fi