From 73c1c9ef690d29cd2c934d85e47b315b756dd70a Mon Sep 17 00:00:00 2001 From: nyxnor <69700936+nyxnor@users.noreply.github.com> Date: Sun, 2 May 2021 23:30:25 +0000 Subject: [PATCH] Raspibolt logo when reaching terminal when exiting menu The ASCII above is height=70 Just got the raspibolt logo https://stadicus.github.io/RaspiBolt/ and used this https://asciigenerator.net/. I would recommend just changing the height between 50-70. This fits on the screen that I tested that is smaller than normal ones, but maybe you want smaller. The smallest I recommend is 50. Useful --> No Cool --> Yes Should be implemented --> Maybe, tell me your thoughts Also, I wanted to do this when sshing modifying `/etc/motd`, but maybe a smaller one like this: ``` _ _ _ _ _ _ __ __ _ ___ _ __ (_) |__ | (_) |_ ____ | '__/ _` / __| '_ \| | '_ \| | | __|_ / | | | (_| \__ \ |_) | | |_) | | | |_ / / |_| \__,_|___/ .__/|_|_.__/|_|_|\__/___| |_| ``` --- home.admin/00mainMenu.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/home.admin/00mainMenu.sh b/home.admin/00mainMenu.sh index 674a35664..9a1594a10 100755 --- a/home.admin/00mainMenu.sh +++ b/home.admin/00mainMenu.sh @@ -357,6 +357,36 @@ case $CHOICE in echo "LND command line options: lncli -h" echo "Back to main menu use command: raspiblitz" echo + echo " -==@@@====@===-- --===@====@@@==- " + echo " -@@=====-----=-===@@=====@@=====-----=====@@- -==@- " + echo " -@@------==---------@@@@@=--------==------@@- --=@@@@= " + echo " @@=------======-----@@@-----======------=@@=@@===@@= " + echo " =@@=---------=======@@@=======-----===@@@==- =@@- " + echo " -=@@==@@=----------=@@@@@@@@@=----==@@@==-- -=@@- " + echo " -@@@=----=@@===--====@@@@@@@@@@@@@@@@=-- -=@@@@= " + echo " =@@=--------@@@@@@@@@@@@@@@@@@@@@=-- -@@=---=@@- " + echo " -@@=-------=@@@=====@@@@@@@@@@=-- =@@=-------@@@ " + echo " =@@=-------=@@====@@@@@@@@==- -=@@@@=--------=@@- " + echo " =@@---------@@==@@@@@@==- -=@@@=@@@---------=@@ " + echo " -@@=--------=@@@@@@=- -@@@@@@@@@@=---------=@@ " + echo " @@=-------@@@@@@@@@=- =@@@===@@@@=@@@@--------@@- " + echo " -@@=------@@====@@@=@@@=- -=@@@======@@====@@@-------=@@ " + echo " -@@------@@@====@@@====@@@=- =@@@======@@@=====@@=------=@@ " + echo " -@@------=@@====@@@@@=====@@@=- -=@@@=@@@@@@===@@@=------=@@ " + echo " -@@-------@@@=@@@@@@@@@@@@@@@=- -=@@@@@@@@=@@@=-------=@@ " + echo " @@=-------=@@@@@@@@@@@@@@@= -=@@@=@@@@=--------@@= " + echo " -@@--------=@@======@@@@- -=@@@@@@=--------=@@ " + echo " =@@--------@@@===@@@=- --=@@@@@@=@@@--------=@@- " + echo " =@@--------@@@@@@=- -==@@@@@=====@@@--------=@@- " + echo " =@@=-------@@@= -==@@@@@@@=====@@@@=--------=@@- " + echo " -@@=----=@@- -==@@@@@@@@@@@@@@@@@==---------=@@= " + echo " =@@==@@- -==@@@@@=========@@@@@=-----------=@@@- " + echo " -@@=- --=@@@==-=@@@@@@@@@@@@@=-------------=@@=- " + echo " -@@= --=@@@==----------=======-------------==@@@= " + echo " -@@=-==@==-=@@@===------------------------==@@@@= " + echo " =@@@@==- -==@@@@@======----======@@@@@=-- " + echo " =@@=-- --===@@@@@@@@@@@===-- " + echo exit 0 esac