2015-09-26 21:32:00 +02:00
|
|
|
#
|
2016-06-02 10:31:06 +02:00
|
|
|
# ~/.profile
|
2015-09-26 21:32:00 +02:00
|
|
|
#
|
2016-06-27 08:00:00 +02:00
|
|
|
|
2017-02-12 11:41:03 +01:00
|
|
|
# SSH agent
|
2017-02-12 15:14:51 +01:00
|
|
|
[[ -z "$SSH_AUTH_SOCK" && -x "$(which ssh-agent)" ]] && eval `ssh-agent -s` &> /dev/null
|
2017-02-12 07:45:14 +01:00
|
|
|
|
2017-02-12 11:41:03 +01:00
|
|
|
# TTY Colors
|
|
|
|
[ -f "$HOME/.config/linuxColors.sh" ] && . "$HOME/.config/linuxColors.sh"
|
2017-02-12 07:45:14 +01:00
|
|
|
|
2017-02-12 11:41:03 +01:00
|
|
|
# Bashrc
|
2017-02-12 15:14:51 +01:00
|
|
|
[ -f ~/.bashrc ] && . ~/.bashrc
|