command_donate.sh 758 B

123456789101112131415161718192021222324
  1. #!/bin/bash
  2. # LinuxGSM command_donate.sh function
  3. # Author: Daniel Gibbs
  4. # Website: https://linuxgsm.com
  5. # Description: Shows ways to donate.
  6. local modulename="CONSOLE"
  7. local commandaction="Console"
  8. local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")")
  9. fn_print_ascii_logo
  10. echo -e "${lightyellow}Support LinuxGSM${default}"
  11. echo -e "================================="
  12. echo -e ""
  13. echo -e "Been using LinuxGSM?"
  14. echo -e "Consider donating to support development."
  15. echo -e ""
  16. echo -e "* ${lightblue}Patreon:${default} https://linuxgsm.com/patreon"
  17. echo -e "* ${lightblue}PayPal:${default} https://linuxgsm.com/paypal"
  18. echo -e "* ${lightblue}Ko-Fi:${default} https://linuxgsm.com/ko-fi"
  19. echo -e ""
  20. echo -e "LinuxGSM est. 2012"
  21. core_exit.sh