From 158145b1211b6f4964321fbe8e2236421b5d9f4c Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Wed, 20 Sep 2023 10:30:44 +0200 Subject: [PATCH] motd: If there are any major changes, I can now edit MOTD! Signed-off-by: Jeroen Oudshoorn --- builder/data/etc/update-motd.d/01-motd | 56 +++++++++++++------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/builder/data/etc/update-motd.d/01-motd b/builder/data/etc/update-motd.d/01-motd index 272d122f..bdf19df3 100644 --- a/builder/data/etc/update-motd.d/01-motd +++ b/builder/data/etc/update-motd.d/01-motd @@ -1,31 +1,31 @@ #!/bin/sh _hostname=$(hostname) -_version=$(shell cut -d"'" -f2 < /usr/local/lib/python3.9/dist-packages/pwnagotchi/_version.py) - +_version=$(cut -d"'" -f2 < /usr/local/lib/python3.9/dist-packages/pwnagotchi/_version.py) +echo echo "(◕‿‿◕) $_hostname" -echo"" -echo" Hi! I'm a pwnagotchi $_version, please take good care of me!" -echo" Here are some basic things you need to know to raise me properly!" -echo"" -echo" If you want to change my configuration, use /etc/pwnagotchi/config.toml" -echo" " -echo" All the configuration options can be found on /etc/pwnagotchi/default.toml," -echo" but don't change this file because I will recreate it every time I'm restarted!" -echo"" -echo" I use oPwnGrid as my main API, you can check stats at https://opwngrid.xyz" -echo"" -echo" I'm managed by systemd. Here are some basic commands." -echo"" -echo" If you want to know what I'm doing, you can check my logs with the command" -echo" - pwnlog" -echo" - pwnver, to check the current version" -echo" - sudo pwnagotchi --donate, to see how you can donate to this project" -echo" - sudo pwnagotchi --check-update, to see if there is a new version available" -echo"" -echo" If you want to know if I'm running, you can use" -echo" systemctl status pwnagotchi" -echo"" -echo" You can restart me using" -echo" systemctl restart pwnagotchi" -echo"" -echo" You learn more about me at https://pwnagotchi.ai/" \ No newline at end of file +echo +echo "Hi! I'm a pwnagotchi $_version, please take good care of me!" +echo "Here are some basic things you need to know to raise me properly!" +echo +echo "If you want to change my configuration, use /etc/pwnagotchi/config.toml" +echo +echo "All the configuration options can be found on /etc/pwnagotchi/default.toml," +echo "but don't change this file because I will recreate it every time I'm restarted!" +echo +echo "I use oPwnGrid as my main API, you can check stats at https://opwngrid.xyz" +echo +echo "I'm managed by systemd. Here are some basic commands." +echo +echo "If you want to know what I'm doing, you can check my logs with the command" +echo "- pwnlog" +echo "- pwnver, to check the current version" +echo "- sudo pwnagotchi --donate, to see how you can donate to this project" +echo "- sudo pwnagotchi --check-update, to see if there is a new version available" +echo +echo "If you want to know if I'm running, you can use" +echo "systemctl status pwnagotchi" +echo +echo "You can restart me using" +echo "systemctl restart pwnagotchi" +echo +echo "You learn more about me at https://pwnagotchi.ai/" \ No newline at end of file