From c8e9e8fc7b2283d6c9cece9e3633bf583616ba2a Mon Sep 17 00:00:00 2001 From: ericbsd Date: Thu, 13 Nov 2025 19:26:10 -0400 Subject: [PATCH] Updated gfx-glogo.lua and fixed ghostbsd-logo.png position The gfx-glogo.lua file was outdated I did bring up to date. --- stand/lua/gfx-glogo.lua | 41 +++++++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/stand/lua/gfx-glogo.lua b/stand/lua/gfx-glogo.lua index 3d5d774dc764..2343ad3c2a94 100644 --- a/stand/lua/gfx-glogo.lua +++ b/stand/lua/gfx-glogo.lua @@ -29,24 +29,29 @@ return { logo = { - graphic = { - " ,gggggg. ", - " ,agg9* .g) ", - " .agg* ._.,gg* ", - " ,gga* (ggg*' ", - " ,ga* ,ga* ", - " ,ga' .ag* ", - " ,ga' .agga' ", - " 9g' .agg'g*,a ", - " 'gggg*',gga' ", - " .gg*' ", - " .gga* ", - " .gga* ", - " (ga* " + ascii = { + image = { + " ,gggggg. ", + " ,agg9* .g) ", + " .agg* ._.,gg* ", + " ,gga* (ggg*' ", + " ,ga* ,ga* ", + " ,ga' .ag* ", + " ,ga' .agga' ", + " 9g' .agg'g*,a ", + " 'gggg*',gga' ", + " .gg*' ", + " .gga* ", + " .gga* ", + " (ga* " + }, + requires_color = false, + shift = {x = 5, y = 3}, + }, + fb = { + image = "/boot/images/ghostbsd-logo.png", + width = 15, + shift = {x = 2, y = -2}, }, - requires_color = false, - shift = {x = 5, y = 3}, - image = "/boot/images/ghostbsd-logo.png", - image_rl = 15 } } \ No newline at end of file