My dotfiles. Period.

bashrc.diff 611B

12345678910111213141516171819202122
  1. --- /etc/skel/.bashrc 2012-07-13 01:31:07.000000000 +0200
  2. +++ .bashrc 2013-04-13 15:48:06.950935705 +0200
  3. @@ -108,3 +108,19 @@
  4. . /etc/bash_completion
  5. fi
  6. fi
  7. +
  8. +if [ -x "${HOME}/.bash/global-before.bashrc" ]; then
  9. + source "${HOME}/.bash/global-before.bashrc";
  10. +fi
  11. +
  12. +if [ -x "${HOME}/.bash/user/$(whoami).bashrc" ]; then
  13. + source "${HOME}/.bash/user/$(whoami).bashrc";
  14. +fi
  15. +
  16. +if [ -x "${HOME}/.bash/host/$(hostname).bashrc" ]; then
  17. + source "${HOME}/.bash/host/$(hostname).bashrc";
  18. +fi
  19. +
  20. +if [ -x "${HOME}/.bash/global-after.bashrc" ]; then
  21. + source "${HOME}/.bash/global-after.bashrc";
  22. +fi