From 39df385b2b598b493340d570d9f1b1d1732efed2 Mon Sep 17 00:00:00 2001 From: Vaclav Uruba Date: Fri, 25 Aug 2023 11:47:58 +0200 Subject: [PATCH] add 256-color script --- scripts/scripts/256-colors | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 scripts/scripts/256-colors diff --git a/scripts/scripts/256-colors b/scripts/scripts/256-colors new file mode 100755 index 0000000..06738eb --- /dev/null +++ b/scripts/scripts/256-colors @@ -0,0 +1,23 @@ +#!/bin/bash + +# This program is free software. It comes without any warranty, to +# the extent permitted by applicable law. You can redistribute it +# and/or modify it under the terms of the Do What The Fuck You Want +# To Public License, Version 2, as published by Sam Hocevar. See +# http://sam.zoy.org/wtfpl/COPYING for more details. + +for fgbg in 38 48 ; do # Foreground / Background + for color in {0..255} ; do # Colors + # Display the color + printf "\e[${fgbg};5;%sm %3s \e[0m" $color $color + # Display 6 colors per lines + if [ $((($color + 1) % 6)) == 4 ] ; then + echo # New line + fi + done + echo # New line +done + +exit 0 + +