From d695ed06665f59e9e960b2ef04e42b8924fa23f0 Mon Sep 17 00:00:00 2001 From: Ekaitz Zárraga Date: Fri, 1 Apr 2016 22:30:53 +0200 Subject: some 256 color tests --- bash/.bash_aliases | 3 +++ bash/.bash_profile | 5 ++--- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'bash') diff --git a/bash/.bash_aliases b/bash/.bash_aliases index 24ffcf5..397a823 100644 --- a/bash/.bash_aliases +++ b/bash/.bash_aliases @@ -23,3 +23,6 @@ alias l='ls -CF' # vim open multiple files in tabs alias vim='vim -p' + +# show me the terminal colors +alias 256color='(x=`tput op` y=`printf %76s`;for i in {0..256};do o=00$i;echo -e ${o:${#o}-3:3} `tput setaf $i;tput setab $i`${y// /=}$x;done)' diff --git a/bash/.bash_profile b/bash/.bash_profile index d0fe952..5130536 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -3,14 +3,13 @@ source ~/.git-prompt.sh #PS1="\[$GREEN\]\t\[$RED\]-\[$BLUE\]\u\[$YELLOW\]\[$YELLOW\]\w\[\033[m\]\[$MAGENTA\]\$(__git_ps1)\[$WHITE\]\$ " PS1="\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$(__git_ps1)\[$WHITE\]\$ " -TERM=xterm-256color - if [ -f ~/.bash_aliases ] ; then . ~/.bash_aliases fi - # Extra configuration for work or home, just separate it in different file to keep dotfiles clean if [ -f ~/.bash_extra ] ; then . ~/.bash_extra fi + +export TERM=xterm-256color -- cgit v1.2.3