mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
11 lines
286 B
Bash
11 lines
286 B
Bash
# Load all files from .shell/rc.d directory
|
|
if [ -d $HOME/.shellrc/rc.d ]; then
|
|
for file in $HOME/.shellrc/rc.d/*.sh; do
|
|
source $file || echo "Failed to source $file"
|
|
done
|
|
|
|
for file in $HOME/.shellrc/rc.d/*.bash; do
|
|
source $file || echo "Failed to source $file"
|
|
done
|
|
fi
|