14 lines
240 B
Bash
14 lines
240 B
Bash
# Prefer US English
|
|
export LANG="en_US"
|
|
|
|
chmod +x ~/.local/bin/*
|
|
|
|
if [ -e install-terminal-theme ]; then
|
|
install-terminal-theme > /dev/null
|
|
fi
|
|
|
|
if [ -e dotfile-system-prune ]; then
|
|
dotfile-system-prune > /dev/null
|
|
fi
|
|
|
|
. "$HOME/.bashrc"
|