install_header.sh 750 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. # LinuxGSM install_header.sh function
  3. # Author: Daniel Gibbs
  4. # Website: https://linuxgsm.com
  5. # Description: Prints installation header.
  6. local commandname="INSTALL"
  7. local commandaction="Install"
  8. local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  9. clear
  10. fn_print_ascii_logo
  11. fn_sleep_time
  12. echo -e "================================="
  13. echo -e "${lightyellow}Linux${default}GSM_"
  14. echo -e "by Daniel Gibbs"
  15. echo -e "${lightblue}Game:${default} ${gamename}"
  16. echo -e "${lightblue}Website:${default} https://linuxgsm.com"
  17. echo -e "${lightblue}Contributors:${default} https://linuxgsm.com/contrib"
  18. echo -e "${lightblue}Donate:${default} https://linuxgsm.com/donate"
  19. echo -e "================================="
  20. fn_sleep_time