.bash_profile 273 B

12345678910
  1. #!/bin/bash
  2. # add local bin to path
  3. export PATH=/usr/local/bin:$PATH
  4. # add Xresources symlink if not exists
  5. [ ! -f "$HOME/.Xresources" ] && ln -s "$HOME/.Xdefaults" "$HOME/.Xresources"
  6. # if bashrc exists and the terminal has stdin load it
  7. test -t 0 && . "$HOME/.bashrc"