diff options
author | Rasmus Steinke <rasi@xssn.at> | 2012-08-11 02:40:34 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2012-08-11 02:40:34 +0200 |
commit | f140a1642ebfde198946ad6760c1003c1cb9a8c3 (patch) | |
tree | 7538aa90092f99c661ec3abb4a69944767315dc5 /bin/show_colors | |
parent | e3fd45703267ce67d8b1e1fb53a4a1b4ccda551e (diff) | |
download | dotfiles-f140a1642ebfde198946ad6760c1003c1cb9a8c3.tar.gz dotfiles-f140a1642ebfde198946ad6760c1003c1cb9a8c3.tar.xz |
scripts
Diffstat (limited to 'bin/show_colors')
-rwxr-xr-x | bin/show_colors | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/bin/show_colors b/bin/show_colors new file mode 100755 index 0000000..4e48ec1 --- /dev/null +++ b/bin/show_colors @@ -0,0 +1,53 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>show_colors</title> + <link rel="stylesheet" type="text/css" href="http://paste.xinu.at/data/paste.css" /> + <link rel="stylesheet" type="text/css" href="http://paste.xinu.at/data/paste-show_colors.css" /> + </head> + <body> + <div class="top_bar"> + <a class="raw_link no" href="http://paste.xinu.at/">New</a> | + <a class="raw_link no" href="http://paste.xinu.at/lK6">Raw</a> | + <a class="raw_link no" href="http://paste.xinu.at/lK6/plain">Plain</a> | + Currently: show_colors | + Timeout: <a class="raw_link no" href="http://paste.xinu.at/file/delete/lK6" title="delete">never</a> + <div style="float:right;"> + <a class="raw_link no" href="http://paste.xinu.at/lK6/">Code</a> | + <a class="raw_link no" href="http://paste.xinu.at/lK6/rmd">Render Markdown</a> + </div> + </div> + <table class="content"> + <tr> +<td class="numbers"><pre><a href="#n1" class="no" id="n1">1</a> +<a href="#n2" class="no" id="n2">2</a> +<a href="#n3" class="no" id="n3">3</a> +<a href="#n4" class="no" id="n4">4</a> +<a href="#n5" class="no" id="n5">5</a> +<a href="#n6" class="no" id="n6">6</a> +<a href="#n7" class="no" id="n7">7</a> +<a href="#n8" class="no" id="n8">8</a> +<a href="#n9" class="no" id="n9">9</a> +<a href="#n10" class="no" id="n10">10</a> +<a href="#n11" class="no" id="n11">11</a> +<a href="#n12" class="no" id="n12">12</a> +<a href="#n13" class="no" id="n13">13</a> +</pre></td><td class="code"> +<pre class="show_colors">#!/bin/zsh + +xdef="$HOME/.colors/hund" + +colors=( $( sed -E '/^!/d; /^$/d; /^#/d; s/(\*color)([0-9]):/\10\2:/g;' $xdef | grep 'color[01][0-9]:' | sort | sed 's/^.*: *//g' ) ) + +echo -e "\e[1;37m + Black Red Green Yellow Blue Magenta Cyan White +────────────────────────────────────────────────────────────────────────\e[0m" +for i in {0..7}; echo -en "\e[$((30+$i))m $colors[i+1] \e[0m" +echo +for i in {8..15}; echo -en "\e[1;$((22+$i))m $colors[i+1] \e[0m" +echo -e "\n" + </pre> </td> + </tr> + </table> + </body> +</html> |