From 12825d5147f5c0b1636dbda5ba34790d7c7bb236 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Fri, 9 Jun 2017 08:03:15 -0600 Subject: Moving files, cleaning up bug with drawer close (closing drawer in 2 places) --- scripts/color_palette.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 scripts/color_palette.sh (limited to 'scripts/color_palette.sh') diff --git a/scripts/color_palette.sh b/scripts/color_palette.sh new file mode 100755 index 0000000..3762fae --- /dev/null +++ b/scripts/color_palette.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# Print tmux color palette. +# Idea from http://superuser.com/questions/285381/how-does-the-tmux-color-palette-work + +for i in $(seq 0 4 255); do + for j in $(seq $i $(expr $i + 3)); do + for k in $(seq 1 $(expr 3 - ${#j})); do + printf " " + done + printf "\x1b[38;5;${j}mcolour${j}" + [[ $(expr $j % 4) != 3 ]] && printf " " + done + printf "\n" +done -- cgit v1.2.3