4
0

install_header.sh 781 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. # LinuxGSM install_header.sh module
  3. # Author: Daniel Gibbs
  4. # Contributors: http://linuxgsm.com/contrib
  5. # Website: https://linuxgsm.com
  6. # Description: Prints installation header.
  7. functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  8. clear
  9. fn_print_ascii_logo
  10. fn_sleep_time
  11. echo -e "================================="
  12. echo -e "${lightyellow}Linux${default}GSM_"
  13. echo -e "by Daniel Gibbs"
  14. echo -e "${lightblue}Version:${default} ${version}"
  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}Sponsor:${default} https://linuxgsm.com/sponsor"
  19. echo -e "================================="
  20. fn_sleep_time