diff options
author | Cody Hiar <codyfh@gmail.com> | 2019-05-03 09:49:40 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2019-05-03 09:49:40 -0600 |
commit | af7e1e0fea820d34c1809f3ac1f6e0cfa04bf858 (patch) | |
tree | 8d32810bddf85eab25e74016ad37bb045cce1b3e /scripts/color_palette.sh | |
parent | e5e02738066d2976d86cb26ccd30f693abf0d6fe (diff) |
Clean up styles from 2.9 update and unused files
Diffstat (limited to 'scripts/color_palette.sh')
-rwxr-xr-x | scripts/color_palette.sh | 14 |
1 files changed, 0 insertions, 14 deletions
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 |