1 # ~/.bash_profile: executed by bash(1) for login shells.
 
   4 if [ -f ~/.bashrc ]; then
 
   8 # Set mintty color-palette
 
   9 if [ "$UNAME" = "Cygwin" ]; then
 
  10   source ~/.mintty/colors/solarized-ansi.sh
 
  14 keychain=$(type -P keychain)
 
  15 test -n "$keychain" && \
 
  16   test -z "$SUDO_USER" && {
 
  18   test -f ~/.ssh/id_rsa && ids="$ids id_rsa"
 
  19   test -f ~/.ssh/id_ed25519 && ids="$ids id_ed25519"
 
  20   if [ -n "$ids" ]; then
 
  21     eval `$keychain -q $ids`
 
  22     source ~/.keychain/`hostname`-sh > /dev/null
 
  29 kinit="$(type -P kinit)"
 
  31     KRB5_CONFIG="$HOME/.krb5.conf"