Skip to content

Commit 1c0e532

Browse files
committed
add Devuan
1 parent c79a9f1 commit 1c0e532

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

src/logo/builtin.c

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,52 @@ static const FFlogo* getLogoDeepin()
438438
FF_LOGO_RETURN
439439
}
440440

441+
static const FFlogo* getLogoDevuan()
442+
{
443+
FF_LOGO_INIT
444+
FF_LOGO_NAMES("devuan", "devuan-linux")
445+
FF_LOGO_LINES(
446+
" ..,,;;;::;,..\n"
447+
" `':ddd;:,.\n"
448+
" `'dPPd:,.\n"
449+
" `:b$$b`.\n"
450+
" 'P$$$d`\n"
451+
" .$$$$$`\n"
452+
" ;$$$$$P\n"
453+
" .:P$$$$$$`\n"
454+
" .,:b$$$$$$$;'\n"
455+
" .,:dP$$$$$$$$b:'\n"
456+
" .,:;db$$$$$$$$$$Pd'`\n"
457+
" ,db$$$$$$$$$$$$$$b:'`\n"
458+
":$$$$$$$$$$$$b:'`\n"
459+
" `$$$$$bd:''`\n"
460+
" `'''`\n"
461+
)
462+
FF_LOGO_COLORS(
463+
"35" //magenta
464+
)
465+
FF_LOGO_RETURN
466+
}
467+
468+
static const FFlogo* getLogoDevuanSmall()
469+
{
470+
FF_LOGO_INIT
471+
FF_LOGO_NAMES("devuan_small", "devuan-linux-small")
472+
FF_LOGO_LINES(
473+
" ..:::.\n"
474+
" ..-==-\n"
475+
" .+#:\n"
476+
" =@@\n"
477+
" :+%@#:\n"
478+
".:=+#@@%*:\n"
479+
"#@@@#=:\n"
480+
)
481+
FF_LOGO_COLORS(
482+
"34" //blue
483+
)
484+
FF_LOGO_RETURN
485+
}
486+
441487
static const FFlogo* getLogoEndeavour()
442488
{
443489
FF_LOGO_INIT
@@ -1354,6 +1400,8 @@ static GetLogoMethod* getLogos()
13541400
getLogoCentOS,
13551401
getLogoCentOSSmall,
13561402
getLogoDebian,
1403+
getLogoDevuan,
1404+
getLogoDevuanSmall,
13571405
getLogoDebianSmall,
13581406
getLogoDeepin,
13591407
getLogoEndeavour,

0 commit comments

Comments
 (0)