From 1c02e71c47b8e30a769690b4f789bb4a5e26403c Mon Sep 17 00:00:00 2001 From: echo <91651232+exhq@users.noreply.github.com> Date: Sun, 25 Sep 2022 12:45:00 +0330 Subject: [PATCH] fixed images, support for having other distro's asciiart/png --- images/images.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/images/images.go b/images/images.go index ced986e..4c5836b 100644 --- a/images/images.go +++ b/images/images.go @@ -8,7 +8,11 @@ var ArchArt []byte //go:embed ubuntu.jpg var UbuntuArt []byte +//go:embed saul.png +var saulArt []byte + var DistroImages = map[string][]byte{ "arch": ArchArt, + "saul": saulArt, "ubuntu": UbuntuArt, }