Compare commits

..

No commits in common. "ee174a425206ceddbc467842f1af6b583e1897e0" and "1b005793ab3714a9d649fafc2a934e318736feb0" have entirely different histories.

2 changed files with 0 additions and 28 deletions

View file

@ -1,18 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# Add local bin to PATH
addpath() {
if [ -d "$1" ]; then
PATH="${1}:${PATH}"
fi
}
addpath ~/.local/bin
addpath ~/.local/share/qemu/bin