Configure bash

This commit is contained in:
Alexander Hess 2022-08-08 23:08:17 +02:00
commit 47c92124e5
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
8 changed files with 628 additions and 0 deletions

8
.bash_login Normal file
View file

@ -0,0 +1,8 @@
# Executed by bash when a login shell starts
# Mimic bash's default behavior explicitly
if [ -f "$HOME/.profile" ]; then
source "$HOME/.profile"
else
source "$HOME/.bashrc"
fi