# bash_profile

[[ -f ~/.profile ]] && source ~/.profile
[[ -f ~/.bashrc ]] && source ~/.bashrc

# start sway on tty 1

if test -z "$DISPLAY" && test /dev/tty1 = "$(tty)"
then
	swayrun
fi