2022-09-22 14:05:20 +02:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
2022-09-22 14:44:27 +02:00
|
|
|
"encoding/base64"
|
2022-09-22 14:05:20 +02:00
|
|
|
"fmt"
|
2022-09-22 14:44:27 +02:00
|
|
|
"os"
|
2022-09-23 11:03:50 +02:00
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
2022-09-22 14:05:20 +02:00
|
|
|
"strings"
|
2022-09-22 14:44:27 +02:00
|
|
|
|
|
|
|
"github.com/exhq/neowofetch/data"
|
|
|
|
"github.com/exhq/neowofetch/images"
|
2022-09-22 14:05:20 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func rgb(r, g, b int) string {
|
|
|
|
return fmt.Sprintf("\x1b[38:2::%d:%d:%dm", r, g, b)
|
|
|
|
}
|
|
|
|
|
2022-09-23 11:03:50 +02:00
|
|
|
var colors = make(map[string]string)
|
2022-09-22 14:05:20 +02:00
|
|
|
|
|
|
|
var logoIndex = 0
|
|
|
|
var isInProgressLine = false
|
|
|
|
var logoLines []string
|
|
|
|
var logoWidth int
|
|
|
|
|
2022-09-22 14:44:27 +02:00
|
|
|
var pngWidth = 12
|
|
|
|
var pngHeight = 12
|
|
|
|
var pngData []byte
|
|
|
|
|
2022-09-23 11:03:50 +02:00
|
|
|
func Initcolor() {
|
|
|
|
colorconf := os.Getenv("HOME") + "/.config/neowofetch/colors"
|
|
|
|
folderconf := filepath.Dir(colorconf)
|
|
|
|
|
|
|
|
_, existcolorconf := os.Stat(colorconf)
|
|
|
|
_, existfolderconf := os.Stat(folderconf)
|
|
|
|
|
|
|
|
if os.IsNotExist(existfolderconf) {
|
|
|
|
os.Mkdir(folderconf, os.ModePerm)
|
|
|
|
}
|
|
|
|
if os.IsNotExist(existcolorconf) {
|
|
|
|
println("color was not found. a default config file has been generated in '~/.config/neowofetch/colors'. rerun the program")
|
|
|
|
f, _ := os.Create(colorconf)
|
|
|
|
_, _ = f.WriteString("red 255 0 0 \nblue 0 255 0\nred 0 0 255\nwhite 255 255 255")
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
content, _ := os.ReadFile(colorconf)
|
|
|
|
lines := strings.Split(string(content), "\n")
|
|
|
|
for _, line := range lines {
|
|
|
|
word := strings.Split(line, " ")
|
|
|
|
R, _ := strconv.Atoi(word[1])
|
|
|
|
G, _ := strconv.Atoi(word[2])
|
|
|
|
B, _ := strconv.Atoi(word[3])
|
|
|
|
colors[word[0]] = rgb(R, G, B)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-22 14:44:27 +02:00
|
|
|
func CutePrintInit() {
|
|
|
|
dist := data.GetDistroVariable("ID")
|
|
|
|
logo := Getascii(dist)
|
2022-09-22 14:05:20 +02:00
|
|
|
if noascii {
|
|
|
|
logo = ""
|
|
|
|
}
|
2022-09-22 14:44:27 +02:00
|
|
|
if usepng {
|
|
|
|
pngData = images.DistroImages[dist]
|
2022-09-23 11:03:50 +02:00
|
|
|
logo = strings.Repeat(" ", pngWidth) + " " + strings.Repeat("\n", pngHeight)
|
2022-09-22 14:44:27 +02:00
|
|
|
}
|
2022-09-22 14:05:20 +02:00
|
|
|
logoLines = strings.Split(logo, "\n")
|
|
|
|
logoWidth = 0
|
|
|
|
for _, v := range logoLines {
|
|
|
|
lineLength := len([]rune(v))
|
|
|
|
if lineLength > logoWidth {
|
|
|
|
logoWidth = lineLength
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func printLogoIfAtBeginningOfNewLine() {
|
|
|
|
if !isInProgressLine {
|
|
|
|
isInProgressLine = true
|
|
|
|
if logoIndex < len(logoLines) {
|
|
|
|
logoLine := logoLines[logoIndex]
|
|
|
|
logoLineLength := len([]rune(logoLine))
|
|
|
|
padding := strings.Repeat(" ", logoWidth-logoLineLength)
|
|
|
|
fmt.Printf("%s%s", logoLine, padding)
|
|
|
|
} else {
|
|
|
|
fmt.Printf("%s", strings.Repeat(" ", logoWidth))
|
|
|
|
}
|
2022-09-22 14:44:27 +02:00
|
|
|
logoIndex += 1
|
2022-09-22 14:05:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func uwuify(message string) (ret string) {
|
|
|
|
sentence := strings.Split(message, " ")
|
|
|
|
ret = ""
|
|
|
|
for i, word := range sentence {
|
|
|
|
if !strings.Contains(strings.ToLower(word), "uwu") {
|
|
|
|
word = strings.ReplaceAll(word, "u", "UwU")
|
|
|
|
|
|
|
|
if strings.Contains(strings.ToLower(word), "owo") {
|
|
|
|
word = strings.ReplaceAll(word, "o", "OwO")
|
|
|
|
}
|
|
|
|
word = strings.ReplaceAll(word, "r", "w")
|
|
|
|
|
|
|
|
}
|
|
|
|
if i != 0 {
|
|
|
|
ret += " "
|
|
|
|
}
|
|
|
|
ret += word
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
type Format struct {
|
|
|
|
noUwuOverride bool
|
|
|
|
colorFormat string
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseFormat(format string) (parsedFormat Format) {
|
|
|
|
for _, v := range strings.Split(format, "|") {
|
|
|
|
colorFormat, isColor := colors[v]
|
2022-09-23 11:03:50 +02:00
|
|
|
if isColor && hascolor {
|
2022-09-22 14:05:20 +02:00
|
|
|
parsedFormat.colorFormat += colorFormat
|
|
|
|
} else {
|
|
|
|
switch v {
|
|
|
|
case "italic":
|
|
|
|
parsedFormat.colorFormat += "\x1b[3m"
|
|
|
|
case "bold":
|
|
|
|
parsedFormat.colorFormat += "\x1b1"
|
|
|
|
case "nouwu":
|
|
|
|
parsedFormat.noUwuOverride = true
|
|
|
|
case "*":
|
|
|
|
default:
|
2022-09-23 11:03:50 +02:00
|
|
|
if hascolor {
|
|
|
|
println("Unknown format code: ", v)
|
|
|
|
}
|
2022-09-22 14:05:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return parsedFormat
|
|
|
|
}
|
|
|
|
|
|
|
|
func CutePrint(
|
|
|
|
message string,
|
|
|
|
format string,
|
|
|
|
) {
|
|
|
|
printLogoIfAtBeginningOfNewLine()
|
|
|
|
parsedFormat := parseFormat(format)
|
|
|
|
willUwuify := shoulduwuify && !parsedFormat.noUwuOverride
|
|
|
|
if willUwuify {
|
|
|
|
message = uwuify(message)
|
|
|
|
}
|
|
|
|
fmt.Printf("%s%s\x1b[0m", parsedFormat.colorFormat, message)
|
|
|
|
}
|
|
|
|
|
|
|
|
func CuteNewLine() {
|
|
|
|
printLogoIfAtBeginningOfNewLine()
|
|
|
|
isInProgressLine = false
|
|
|
|
fmt.Println()
|
|
|
|
}
|
|
|
|
|
|
|
|
func CutePrintEnd() {
|
|
|
|
for logoIndex < len(logoLines) {
|
|
|
|
CuteNewLine()
|
|
|
|
}
|
2022-09-22 14:44:27 +02:00
|
|
|
if usepng {
|
|
|
|
fmt.Printf("\x1b[%dA", logoIndex)
|
|
|
|
fmt.Printf("\x1b]1337;File=inline=1;width=%d;height=%d:", pngWidth, pngHeight)
|
|
|
|
enc := base64.NewEncoder(base64.StdEncoding, os.Stdout)
|
|
|
|
enc.Write(images.DistroImages["arch"])
|
|
|
|
enc.Close()
|
|
|
|
fmt.Println("\a")
|
|
|
|
}
|
2022-09-22 14:05:20 +02:00
|
|
|
}
|