10 lines
187 B
Bash
10 lines
187 B
Bash
|
#
|
||
|
# ~/.bash_profile
|
||
|
#
|
||
|
|
||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||
|
[[ -f ~/.profile ]] && . ~/.profile
|
||
|
|
||
|
# If running from tty1 start sway
|
||
|
[ "$(tty)" = "/dev/tty1" ] && exec ~/.config/sway/start.sh
|