-
Notifications
You must be signed in to change notification settings - Fork 0
/
donate.go
47 lines (36 loc) · 1.47 KB
/
donate.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main
// This file is part of goimapnotify
// Copyright (C) 2017-2024 Jorge Javier Araya Navarro
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
import (
"io"
"github.com/fatih/color"
)
func printDonate(out io.Writer, padding int) {
msg := donateMessage(padding)
white := color.New(color.FgWhite, color.Bold)
stars := white.Sprintf("%*s*****************************************************\n", padding, " ")
out.Write([]byte(stars + msg + stars))
}
func donateMessage(padding int) string {
msg := ""
magenta := color.New(color.FgMagenta, color.Bold)
white := color.New(color.FgWhite, color.Bold)
// line
msg += white.Sprintf("%*s✨ If you like this project, consider making a donation \n", padding, " ")
// line
msg += white.Sprintf("%*sto the author at ", padding, " ")
msg += magenta.Sprint("https://ko-fi.com/K3K1XEZCQ")
msg += white.Sprint(" :D ✨\n")
// end
return msg
}