Files
dot/.bash.d/.bash_sources

16 lines
308 B
Bash
Raw Normal View History

2026-02-21 07:58:17 -05:00
# Source ble.sh if installed.
if [ -f ~/.local/share/blesh/ble.sh ]; then
source -- ~/.local/share/blesh/ble.sh
fi
# Source rust things if they exist
if [ -f ~/.cargo/env ]; then
. ~/.cargo/env
fi
# Source a top-secret alias file
2026-02-21 08:36:12 -05:00
if [ -f ~/.bash.d/.bash_secrets ]; then
. ~/.bash.d/.bash_secrets
2026-02-21 07:58:17 -05:00
fi