diff options
author | Blaise Thompson <blaise@untzag.com> | 2018-04-23 17:44:48 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2018-04-23 17:44:48 -0500 |
commit | 7d6b1a36e3f68fc65e9ec2c9e8312f2d1e608b4b (patch) | |
tree | 4b6671a1b7538f20f269caa411e4471f5c426197 | |
parent | 4723e2c689ef57380af0cbe6974b120cf3f90aee (diff) |
2018-04-23 17:44
-rw-r--r-- | dotfiles/bashrc.sync | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dotfiles/bashrc.sync b/dotfiles/bashrc.sync index 6147bbb..44b799c 100644 --- a/dotfiles/bashrc.sync +++ b/dotfiles/bashrc.sync @@ -36,6 +36,13 @@ function git-sync-all(){ cd ~/dotfiles; git-commit-with-timestamp; } +function print-yellow { + YELLOW='\033[0;33m' + NC='\033[0m' # No Color + printf "${YELLOW}$*${NC}\n" +} + function print-line { - printColor "%`tput cols`s"|tr ' ' '#' + print-yellow "%`tput cols`s"|tr ' ' '#' } + |