added custom ascii support
This commit is contained in:
parent
9e36993b9f
commit
99a6d51717
2 changed files with 18 additions and 10 deletions
|
|
@ -2,6 +2,7 @@ package utils
|
|||
|
||||
import (
|
||||
"os"
|
||||
"os/exec"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
|
@ -10,11 +11,19 @@ var shoulduwuify bool = true
|
|||
var noascii bool = false
|
||||
var usepng bool = false
|
||||
var hascolor bool = true
|
||||
var Customascii = false
|
||||
var asciidir string
|
||||
|
||||
func Initargs() {
|
||||
args = os.Args[1:]
|
||||
for _, argument := range args {
|
||||
if strings.HasPrefix(argument, "--") {
|
||||
if strings.HasPrefix(argument, "--ascii=") {
|
||||
cmd := exec.Command("whoami")
|
||||
shell, _ := cmd.Output()
|
||||
funny := strings.Replace(string(shell), "\n", "", -1)
|
||||
Customascii = true
|
||||
asciidir = strings.ReplaceAll(argument[8:], "~", "/home/"+funny)
|
||||
} else if strings.HasPrefix(argument, "--") {
|
||||
switch argument {
|
||||
case "--nouwu":
|
||||
shoulduwuify = false
|
||||
|
|
@ -32,11 +41,3 @@ func Initargs() {
|
|||
func Woulduwuify() bool {
|
||||
return shoulduwuify
|
||||
}
|
||||
func Asciioverwrite(ascii []string) []string {
|
||||
if noascii {
|
||||
literallynothing := []string{"", ""}
|
||||
return (literallynothing)
|
||||
} else {
|
||||
return ascii
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue