18 lines
282 B
Bash
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
|
|
|