install_header.sh 554 B

123456789101112131415161718
  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. echo "================================="
  11. echo "LinuxGSM - ${gamename}"
  12. echo "by Daniel Gibbs"
  13. echo "Website: https://linuxgsm.com"
  14. echo "Contributors: https://linuxgsm.com/contrib"
  15. echo "Donate: https://linuxgsm.com/donate"
  16. echo "================================="