aboutsummaryrefslogtreecommitdiff
path: root/pb
diff options
context:
space:
mode:
Diffstat (limited to 'pb')
-rwxr-xr-xpb48
1 files changed, 48 insertions, 0 deletions
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