16 lines
261 B
Bash
16 lines
261 B
Bash
#!/usr/bin/env 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"
|