summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHostGrady <8695946-HostGrady@users.noreply.gitlab.com>2022-03-06 13:21:46 -0500
committerHostGrady <8695946-HostGrady@users.noreply.gitlab.com>2022-03-06 13:21:46 -0500
commit2c2713da0c46c179f4024492f2b10b0d3231afdc (patch)
tree5bc2ae96f1fc083bca865d38a2d85a82dc3b56a9
parentAdding unblacklist function. (diff)
New colorscript: suckless
-rwxr-xr-xcolorscripts/suckless27
1 files changed, 27 insertions, 0 deletions
diff --git a/colorscripts/suckless b/colorscripts/suckless
new file mode 100755
index 0000000..dbc59be
--- /dev/null
+++ b/colorscripts/suckless
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash
+
+# Author: HostGrady
+# Font used: https://patorjk.com/software/taag/#p=display&f=Cricket&t=suckless
+
+
+if [ -x "$(command -v tput)" ]; then
+ bold="$(tput bold)"
+ blue="$(tput setaf 4)"
+ cyan="$(tput setaf 6)"
+ reset="$(tput sgr0)"
+fi
+
+art="${bold}${blue} __ __
+.-----.--.--.----| |--| .-----.-----.-----.
+|__ --| | | __| <| | -__|__ --|__ --|
+|_____|_____|____|__|__|__|_____|_____|_____|
+${reset}${cyan} software that sucks less${reset} "
+
+# use this as a base if you want to redo this one
+#art=" __ __
+#.-----.--.--.----| |--| .-----.-----.-----.
+#|__ --| | | __| <| | -__|__ --|__ --|
+#|_____|_____|____|__|__|__|_____|_____|_____|
+# software that sucks less "
+
+echo "$art"