install_header.sh 751 B

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