mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 00:59:38 +00:00
Andrei Jiroh Halili
4f0d7e1708
* Changed shebang to regular sh for possible POSIX compatibility * Updated header notes, probably add SPDX-License-Identifier later Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
11 lines
220 B
Bash
11 lines
220 B
Bash
#!/usr/bin/env sh
|
|
# if running bash
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|
|
|
|
source "$HOME/.env"
|
|
source "$HOME/.config/aliases"
|