14 lines
251 B
Bash
14 lines
251 B
Bash
#
|
|
# ~/.profile
|
|
#
|
|
|
|
# SSH agent
|
|
[ -z "$SSH_AUTH_SOCK" ] && eval `ssh-agent -s` &> /dev/null
|
|
|
|
# TTY Colors
|
|
[ -f "$HOME/.config/linuxColors.sh" ] && . "$HOME/.config/linuxColors.sh"
|
|
|
|
# Bashrc
|
|
#[ -f ~/.bashrc ] && . ~/.bashrc
|
|
# TODO Is this really useful?
|