install_header.sh 687 B

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