blob: 8589f82693ab3d42819d59c36cf929bc02e3d709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
#Light and fancy bash
if [[ -f "$HOME/.files" ]]; then
source "$HOME/.files"
else
DOTFILEBASE="/home/jonas/dotfiles"
fi
for f in $DOTFILEBASE/bash/*.bash; do
source $f
done
|