diff options
author | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-04-01 22:30:53 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-04-01 22:30:53 +0200 |
commit | d695ed06665f59e9e960b2ef04e42b8924fa23f0 (patch) | |
tree | c369464b71f0cfc6cb8461f6e81ee074b80bdf78 /bash/.bash_aliases | |
parent | e9ef9b0a02601a30a1c9242d5849a17ec2af1cbb (diff) |
some 256 color tests
Diffstat (limited to 'bash/.bash_aliases')
-rw-r--r-- | bash/.bash_aliases | 3 |
1 files changed, 3 insertions, 0 deletions
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)' |