aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rw-r--r--home/.bash_profile8
-rw-r--r--home/.bashrc3
3 files changed, 13 insertions, 3 deletions
diff --git a/README.md b/README.md
index d70b679..365e1b6 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,6 @@
1# TGWIL Dotfiles.Core 1# TGWIL Dotfiles.Core
2 2
3These are my core dotfiles. They are used on every account on every machine. 3These are my core dotfiles. They are used on every account on every machine, including root.
4
5My other dotfiles:
6- [dotfiles.personal](http://git.tgwil.net/dotfiles.personal/) for personal accounts.
diff --git a/home/.bash_profile b/home/.bash_profile
index c2a4763..ee621b3 100644
--- a/home/.bash_profile
+++ b/home/.bash_profile
@@ -1,8 +1,14 @@
1#!/usr/local/bin/bash 1#!/usr/local/bin/bash
2# ~/.bash_profile 2# FILE : dotfiles.core/home/.bash_profile
3# TARGET: ~/.bash_profile
3# AUTHOR: tgwil 4# AUTHOR: tgwil
4 5
5# If .bashrc exists, use it 6# If .bashrc exists, use it
6if [[ $- == *i* && -f ~/.bashrc ]]; then 7if [[ $- == *i* && -f ~/.bashrc ]]; then
7 . ~/.bashrc 8 . ~/.bashrc
8fi 9fi
10
11# If .bashrc.personal exists, use it.
12if [[ $- == *i* && -f ~/.bashrc.personal ]]; then
13 . ~/.bashrc.personal
14fi
diff --git a/home/.bashrc b/home/.bashrc
index b1f7ea4..7496612 100644
--- a/home/.bashrc
+++ b/home/.bashrc
@@ -1,5 +1,6 @@
1#!/usr/local/bin/bash 1#!/usr/local/bin/bash
2# ~/.bashrc 2# FILE : dotfiles.core/home/.bashrc
3# TARGET: ~/.bashrc
3# AUTHOR: tgwil 4# AUTHOR: tgwil
4 5
5# Test for interactive shell 6# Test for interactive shell