diff --git a/home/bash_profile b/home/bash_profile new file mode 100644 index 0000000..008a398 --- /dev/null +++ b/home/bash_profile @@ -0,0 +1,18 @@ +# Source my profile +profile="${HOME}/.profile" +[[ -f $profile ]] && . "$profile" +unset profile + +# Source my bashrc +bashrc="${HOME}/.bashrc" +[[ -f $bashrc ]] && . "$bashrc" +unset bashrc + +# Fastfetch +fastfetch + +# Start Sway if on tty1 +if [ "$(tty)" = /dev/tty1 ]; then + exec sway +fi +