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

14
images/images.go Normal file
View file

@ -0,0 +1,14 @@
package images
import _ "embed"
//go:embed arch.png
var ArchArt []byte
//go:embed ubuntu.jpg
var UbuntuArt []byte
var DistroImages = map[string][]byte{
"arch": ArchArt,
"ubuntu": UbuntuArt,
}