Change ascii colors and add BPM support

This commit is contained in:
2025-09-25 11:24:07 +03:00
parent d61dc68e4f
commit 530f28c397
4 changed files with 44 additions and 4 deletions
@@ -0,0 +1,42 @@
From 8cb0780026a9dfe42fc04e04a7ca2ee93b54da9f Mon Sep 17 00:00:00 2001
From: EnumDev <[email protected]>
Date: Thu, 25 Sep 2025 10:48:48 +0300
Subject: [PATCH 1/2] Add Tide Linux ascii art
---
neofetch | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/neofetch b/neofetch
index 1e4b5646..49eb348b 100755
--- a/neofetch
+++ b/neofetch
@@ -10351,6 +10351,25 @@ ssssssssssssso/-` `-/osssssssssssss
`osssssssssssssssssssso`
EOF
;;
+ "Tide"*)
+ set_colors 27 39
+ read -rd '' ascii_data <<'EOF'
+${c1} @@@@ ${c1}@@@${c2}*
+ ${c1}@@${c2}~~~~${c1}@@ ${c1}@@${c2}~~~
+ ${c1}@@${c2}~~ ${c2}~~${c1}@ ${c1}@@${c2}~~
+ ${c1}@@${c2}~~ ${c2}~${c1}@ ${c1}@@@${c2}~~
+ ${c2}*${c1}@@${c2}~~ ${c1}@@@@ ${c2}~${c1}@@@@${c2}~~~ ${c1}@@@${c2}*
+ ${c2}~~ ${c1}@@${c2}~~~~${c1}@@ ${c2}~~~~ ${c1}@@${c2}~~~
+ ${c1}@@${c2}~~ ${c2}~~${c1}@ ${c1}@@${c2}~~
+ ${c1}@@${c2}~~ ${c2}~${c1}@ ${c1}@@@${c2}~~
+ ${c2}*${c1}@@${c2}~~ ${c1}@@@@ ${c2}~${c1}@@@@${c2}~~~ ${c1}@@@${c2}*
+ ${c2}~~ ${c1}@@${c2}~~~~${c1}@@ ${c2}~~~~ ${c1}@@${c2}~~~
+ ${c1}@@${c2}~~ ${c2}~~${c1}@ ${c1}@@${c2}~~
+ ${c1}@@${c2}~~ ${c2}~${c1}@ ${c1}@@@${c2}~~
+ ${c2}*${c1}@@${c2}~~ ${c2}~${c1}@@@@${c2}~~~
+ ${c2}~~ ${c2}~~~~
+EOF
+ ;;
*)
case $kernel_name in
--
2.51.0