diff options
author | xero <x@xero.nu> | 2014-03-08 22:05:02 -0500 |
---|---|---|
committer | xero <x@xero.nu> | 2014-03-08 22:05:02 -0500 |
commit | b58ff155f74cbe76f51aa0074d8d2218de774613 (patch) | |
tree | c38b8ac4eab2ae476de312e80c8913db8b264334 /fun/colors | |
parent | 9ae724da88a69ab938ee1f899949441cb97b84a7 (diff) | |
download | dotfiles_ascii-b58ff155f74cbe76f51aa0074d8d2218de774613.tar.xz dotfiles_ascii-b58ff155f74cbe76f51aa0074d8d2218de774613.zip |
reorganize scripts, and system automation scripts for hybrid graphics, touchpad management, and file comparison
Diffstat (limited to 'fun/colors')
-rwxr-xr-x | fun/colors | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/fun/colors b/fun/colors deleted file mode 100755 index c8d527b..0000000 --- a/fun/colors +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -xdef="$HOME/.Xdefaults" - -colors=( $( sed -re '/^!/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}; do echo -en "\e[$((30+$i))m ${colors[i]} \e[0m"; done -echo -for i in {8..15}; do echo -en "\e[1;$((22+$i))m ${colors[i]} \e[0m"; done -echo -e "\n" |