default config actually does something now. also print > fmt.Print

This commit is contained in:
echo 2022-09-10 11:01:27 +04:30
parent 169bb2cc22
commit 3f42e2d147
4 changed files with 23 additions and 8 deletions

View file

@ -38,9 +38,9 @@ func handleConfig() {
}
if os.IsNotExist(file) {
println("bruh you aint got tha file? bruh fr fr bruh wtf")
println("config was not found. a default config file has been generated in '~/.config/neowofetch/conf'")
f, _ := os.Create(getConfigFile())
_, _ = f.WriteString("test\namong")
_, _ = f.WriteString("println neOwOfetch 🔥\ninfo username\nprint @\ninfoln distro\nprint uptime: \ninfo uptime")
} else {
body, _ := ioutil.ReadFile(getConfigFile())
fbody := strings.Split(string(body), "\n")
@ -82,6 +82,8 @@ func PrintInfo(infoType string, noUwuOverride bool) {
} else if infoType == "uptime" {
among, _ := strconv.Atoi(getUptime())
util.UwuPrint(formatTime(among), true)
} else if infoType == "distro" {
util.UwuPrint(getDistro(), noUwuOverride)
}
}