Add bash_profile, profile

This commit is contained in:
Josh Holtrop 2025-06-04 08:05:34 -04:00
parent 0e1ecfedaa
commit 5bae9bc66e
3 changed files with 7 additions and 0 deletions

2
bash_profile Normal file
View File

@ -0,0 +1,2 @@
source $HOME/.profile
source $HOME/.bashrc

View File

@ -21,6 +21,9 @@ def install_file(src, dst):
files = [
('bash_aliases', '.bash_aliases'),
('bash_aliases.d', '.bash_aliases.d'),
('bash_profile', '.bash_profile'),
('profile', '.profile'),
('inputrc', '.inputrc'),
('screenrc', '.screenrc'),
('gitignore', '.gitignore'),

2
profile Normal file
View File

@ -0,0 +1,2 @@
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
export PATH="$HOME/bin":"$PATH"