4
0

command_sponsor.sh 817 B

1234567891011121314151617181920212223242526
  1. #!/bin/bash
  2. # LinuxGSM command_sponsor.sh module
  3. # Author: Daniel Gibbs
  4. # Contributors: http://linuxgsm.com/contrib
  5. # Website: https://linuxgsm.com
  6. # Description: Shows ways to sponsor.
  7. commandname="SPONSOR"
  8. commandaction="Sponsor"
  9. moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  10. fn_firstcommand_set
  11. fn_print_ascii_logo
  12. echo -e "${lightyellow}Support LinuxGSM${default}"
  13. echo -e "================================="
  14. echo -e ""
  15. echo -e "Been using LinuxGSM?"
  16. echo -e "Consider sponsoring to support development."
  17. echo -e ""
  18. echo -e "* ${lightblue}GitHub:${default} https://github.com/sponsors/dgibbs64"
  19. echo -e "* ${lightblue}Patreon:${default} https://linuxgsm.com/patreon"
  20. echo -e "* ${lightblue}PayPal:${default} https://linuxgsm.com/paypal"
  21. echo -e ""
  22. echo -e "LinuxGSM est. 2012"
  23. core_exit.sh