From d4bfe144de8330ecbf737d04e59d6069597a5ebc Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Fri, 16 May 2025 17:16:19 +0200 Subject: update --- pb | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 pb (limited to 'pb') diff --git a/pb b/pb new file mode 100755 index 0000000..d3eba2a --- /dev/null +++ b/pb @@ -0,0 +1,48 @@ +#!/usr/bin/env bash + +# 256 colour functions usage +# source ./pb +# printf %b "$(bg 196)$(fg 254) RED $(nc)\n" + +nc () { + printf '\033[0;0m'; + exit; +} + +fg () { + + if [ -z "$1" ] || [ "$1" -eq "$1" ] >/dev/null 2>&1; then + true + else + echo "bad parameter"; + exit; + fi + + local x + x=$(tput colors) + + if (("$1" < 256)) && (("$x" > 255)); then + printf %s "\033[38;5;$1m" + fi + +} + +bg () { + + if [ -z "$1" ] || [ "$1" -eq "$1" ] >/dev/null 2>&1; then + true + else + echo "bad parameter"; + exit; + fi + + local x + x=$(tput colors) + + if (("$1" < 256)) && (("$x" > 255)); then + printf %s "\033[48;5;$1m" + fi + +} + +# end 256 colour functions -- cgit v1.2.3