diff options
-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 ' ' '#' } + |