From af7e1e0fea820d34c1809f3ac1f6e0cfa04bf858 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Fri, 3 May 2019 09:49:40 -0600 Subject: Clean up styles from 2.9 update and unused files --- scripts/color_palette.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 scripts/color_palette.sh (limited to 'scripts/color_palette.sh') diff --git a/scripts/color_palette.sh b/scripts/color_palette.sh deleted file mode 100755 index 3762fae..0000000 --- a/scripts/color_palette.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/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