1
0
Fork 0
forked from ahurac/dotfiles
ahuarc-dotfiles/home/bash_profile
2023-09-12 22:58:57 +02:00

18 lines
282 B
Bash

# 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