From f6a2eaa26c30b14bc45507ace0898fdd127471f2 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Tue, 11 Nov 2025 14:26:19 -0500 Subject: [PATCH] Add shim for loading a local bashrc --- scripts.d/99-local.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 scripts.d/99-local.sh diff --git a/scripts.d/99-local.sh b/scripts.d/99-local.sh new file mode 100644 index 0000000..204d4c7 --- /dev/null +++ b/scripts.d/99-local.sh @@ -0,0 +1,3 @@ +if [ -f ~/.bashrc_local ]; then + source ~/.bashrc_local +fi