Browse Source

Added donate feature

pull/2088/head
Daniel Gibbs 6 years ago
parent
commit
67094a7688
  1. 18
      lgsm/functions/command_donate.sh
  2. 14
      lgsm/functions/core_functions.sh
  3. 2
      lgsm/functions/core_getopt.sh
  4. 8
      lgsm/functions/install_header.sh

18
lgsm/functions/command_donate.sh

@ -0,0 +1,18 @@
#!/bin/bash
# LinuxGSM command_donate.sh function
# Author: Daniel Gibbs
# Website: https://linuxgsm.com
# Description: Shows ways to donate
echo "Support LinuxGSM"
echo "================================="
echo ""
echo "Been using LinuxGSM?"
echo "Consider donating to support development."
echo ""
echo "* Patreon: https://linuxgsm.com/patreon"
echo "* PayPal: https://linuxgsm.com/paypal"
echo "* Flattr: https://linuxgsm.com/flattr"
echo "* Buy me a Coffee: https://linuxgsm.com/coffee"
echo ""
echo "LinuxGSM has been going since 2012"

14
lgsm/functions/core_functions.sh

@ -51,6 +51,12 @@ fn_fetch_function
# Commands
command_backup.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
}
command_console.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
@ -61,22 +67,22 @@ functionfile="${FUNCNAME}"
fn_fetch_function
}
command_postdetails.sh(){
command_details.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
}
command_details.sh(){
command_donate.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
}
command_test_alert.sh(){
command_postdetails.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
}
command_backup.sh(){
command_test_alert.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
}

2
lgsm/functions/core_getopt.sh

@ -50,6 +50,8 @@ cmd_dev_detect_glibc=( "dg;detect-glibc" "command_dev_detect_glibc.sh" "Detect r
cmd_dev_detect_ldd=( "dl;detect-ldd" "command_dev_detect_ldd.sh" "Detect required dynamic dependencies." )
cmd_dev_query_raw=( "qr;query-raw" "command_dev_query_raw.sh" "The raw output of gamedig and gsquery." )
cmd_dev_clear_functions=( "cf;clear-functions" "command_dev_clear_functions.sh" "Delete the contents of the functions dir." )
# Donate
cmd_donate=( "do;donate" "command_donate.sh" "Donation options." )
### Set specific opt here ###

8
lgsm/functions/install_header.sh

@ -10,9 +10,9 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
clear
echo "================================="
echo "${gamename}"
echo "Linux Game Server Manager"
echo "LinuxGSM - ${gamename}"
echo "by Daniel Gibbs"
echo "Contributors: http://goo.gl/qLmitD"
echo "https://linuxgsm.com"
echo "Website: https://linuxgsm.com"
echo "Contributors: https://linuxgsm.com/contrib"
echo "Donate: https://linuxgsm.com/donate"
echo "================================="

Loading…
Cancel
Save