Created
September 18, 2019 19:48
-
-
Save rouchage/1eb74810a8d690e005adba6913162f98 to your computer and use it in GitHub Desktop.
Colorful "Groot" image for terminal, add to .bashrc and have fun.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #-- Made By 'Rouchage' --# | |
| BLACK=`tput setaf 0` | |
| RED=`tput setaf 1` | |
| GREEN=`tput setaf 2` | |
| YELLOW=`tput setaf 3` | |
| BLUE=`tput setaf 4` | |
| MAGENTA=`tput setaf 5` | |
| CYAN=`tput setaf 6` | |
| WHITE=`tput setaf 7` | |
| BOLD=`tput bold` | |
| boldblue="$BOLD$BLUE" | |
| RESET=`tput sgr0` | |
| # example | |
| # echo -e "hello ${RED}some red text${RESET} world${RESET}" | |
| echo | |
| echo -e "${GREEN} \^V//${RESET}" | |
| echo -e "${YELLOW} |${RESET}. .${YELLOW}|${RESET} ${boldblue}I AM (G)ROOT!${RESET}" | |
| echo -e "${GREEN} - ${RESET}${YELLOW}\ - / ${RESET}${GREEN}_${RESET}" | |
| echo -e "${YELLOW} \_| |_/${RESET}" | |
| echo -e "${YELLOW} \ \ ${RESET}" | |
| echo -e "${RED} __${RESET}${YELLOW}/${RESET}${RED}_${RESET}${YELLOW}/${RESET}${RED}__${RESET}" | |
| echo -e "${RED} |_______|${RESET} With great power comes great responsibility." | |
| echo -e "${RED} \ /${RESET} Use sudo wisely." | |
| echo -e "${RED} \___/${RESET}" | |
| echo | |
| # | |
| # \^V// | |
| # |. .| I AM (G)ROOT! | |
| # - \ - / _ | |
| # \_| |_/ | |
| # \ \ | |
| # __/_/__ | |
| # |_______| With great power comes great responsibility. | |
| # \ / Use sudo wisely. | |
| # \___/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment