From 92944006e728ade7338db81ef81c27716b247c81 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Thu, 12 Jun 2025 22:54:20 +0530 Subject: Update shell configuration --- src/config/files/shell/.bashrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/config/files/shell/.bashrc (limited to 'src/config/files/shell/.bashrc') diff --git a/src/config/files/shell/.bashrc b/src/config/files/shell/.bashrc new file mode 100644 index 0000000..2161b13 --- /dev/null +++ b/src/config/files/shell/.bashrc @@ -0,0 +1,16 @@ +# .bashrc + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + +# User specific aliases and functions +if [ -d ~/.bashrc.d ]; then + for rc in ~/.bashrc.d/*; do + if [ -f "$rc" ]; then + . "$rc" + fi + done +fi +unset rc -- cgit