Skip to content

Commit

Permalink
bash: Update Happy Pongal ASCII Text Art
Browse files Browse the repository at this point in the history
  • Loading branch information
mskian committed Jan 13, 2024
1 parent 46e52d3 commit c412f73
Showing 1 changed file with 65 additions and 22 deletions.
87 changes: 65 additions & 22 deletions pongal.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
#!/bin/bash

# Pongal Greetings at pongal.tamilwords.net
# Happy Pongal Greeting wishes in Terminal

echo -ne "\n\n 🌾 Pongal Greetings 🌾 \n\n"
# -----------------------------------------------------------------------------
#
# Info:
# author: Santhosh Veer
# file: pongal.sh
# created: 13.01.2024
# revision: 13.01.2024
# version: 0.1
# -----------------------------------------------------------------------------
#
# Happy Pongal ASCII Text Art
# Code - https://raw.githubusercontent.com/mskian/happy-pongal-wishes/main/pongal.sh
# Pongal Greetings - https://pongal.tamilwords.net
#
# -----------------------------------------------------------------------------

## Progress Bar
progress_bar() {
local total_steps=50
local width=30

for ((i=0; i<=${total_steps}; i++)); do
percentage=$((i * 100 / total_steps))
progress=$((i * width / total_steps))
Expand All @@ -20,27 +31,59 @@ progress_bar() {

progress_bar

GREEN="\e[32m"
ENDCOLOR="\e[0m"
## Pongal ASCII Text Art

echo -ne "
\n 🌾 \e[36m Pongal Greetings\e[0m 🌾
\\033[1;32m
@@
@@@@@@@@@@
@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@
/////////@@@@@@*********
*******@@@@@@,,,,,,,
******@@@@@@,,,,,,
/////////@@@@*********
,//////////////**************
.////////////////****************
////###//////////#/***********((****
/%/////////&&&/////*****%%%*********(
/&&&&//&&&&&/&&&&&/*%%%%%*%%%%%**%%%%#
///&&&&/////////&&%%********(%%%%***
*//////////##/////*****///*********
////////////////****************
//////////////**************
//////////**********
▒█░▒█ █▀▀█ █▀▀█ █▀▀█ █░░█
▒█▀▀█ █▄▄█ █░░█ █░░█ █▄▄█
▒█░▒█ ▀░░▀ █▀▀▀ █▀▀▀ ▄▄▄█
echo -e "${GREEN}
▒█▀▀█ █▀▀█ █▀▀▄ █▀▀▀ █▀▀█ █░░
▒█▄▄█ █░░█ █░░█ █░▀█ █▄▄█ █░░
▒█░░░ ▀▀▀▀ ▀░░▀ ▀▀▀▀ ▀░░▀ ▀▀▀
▒█░▒█ █▀▀█ █▀▀█ █▀▀█ █░░█
▒█▀▀█ █▄▄█ █░░█ █░░█ █▄▄█
▒█░▒█ ▀░░▀ █▀▀▀ █▀▀▀ ▄▄▄█
/\ 🍚
/ \
____/______\____
| |
* 🔥 *
* /\ *
|________________|
▒█▀▀█ █▀▀█ █▀▀▄ █▀▀▀ █▀▀█ █░░
▒█▄▄█ █░░█ █░░█ █░▀█ █▄▄█ █░░
▒█░░░ ▀▀▀▀ ▀░░▀ ▀▀▀▀ ▀░░▀ ▀▀▀
< Mattu Pongal Wishes >
---------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
/\🍚
/ \
_/____\_
| |
| 🔥 |
| 🪵 |
|______|
||----w |
|| ||
${ENDCOLOR}"
\\033[0m"

0 comments on commit c412f73

Please sign in to comment.