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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ package utils
|
|||
import (
|
||||
"encoding/base64"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
@ -58,6 +59,12 @@ func Initcolor() {
|
|||
func CutePrintInit() {
|
||||
dist := data.GetDistroVariable("ID")
|
||||
logo := Getascii(dist)
|
||||
|
||||
if Customascii {
|
||||
body, _ := ioutil.ReadFile(asciidir)
|
||||
logo = (string(body))
|
||||
}
|
||||
|
||||
if noascii {
|
||||
logo = ""
|
||||
}
|
||||
|
@ -70,7 +77,7 @@ func CutePrintInit() {
|
|||
for _, v := range logoLines {
|
||||
lineLength := len([]rune(v))
|
||||
if lineLength > logoWidth {
|
||||
logoWidth = lineLength
|
||||
logoWidth = lineLength + 2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue