dotfiles/.bash_profile

18 lines
408 B
Bash
Raw Normal View History

2023-05-25 16:20:12 +02:00
# .bash_profile
# Get the aliases and functions
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
export _JAVA_AWT_WM_NOREPARENTING=1
2023-07-07 10:40:16 +02:00
export PATH="$PATH:/opt/texlive/2023/bin/x86_64-linux/"
2023-05-25 16:20:12 +02:00
# SSHAGENT
export SSH_AUTH_SOCK=${HOME}/.ssh/agent
if ! pgrep -u ${USER} ssh-agent > /dev/null; then
rm -f ${SSH_AUTH_SOCK}
fi
if [ ! -S ${SSH_AUTH_SOCK} ]; then
eval $(ssh-agent -a ${SSH_AUTH_SOCK} 2> /dev/null)
fi