Add images to uwufetch

This commit is contained in:
nea 2022-09-22 14:44:27 +02:00
parent 50b8b7449b
commit 5d4761e499
No known key found for this signature in database
GPG key ID: AA563E93EB628D91
9 changed files with 75 additions and 30 deletions

View file

@ -8,6 +8,7 @@ import (
var args []string
var shoulduwuify bool = true
var noascii bool = false
var usepng bool = false
func Initargs() {
args = os.Args[1:]
@ -18,6 +19,8 @@ func Initargs() {
shoulduwuify = false
case "--noascii":
noascii = true
case "--usepng":
usepng = true
}
}
}