Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/logo/ascii/quasar.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
###
#####
## ####
## #####
## #####
## ###
## ####
## #### ####
## ### ### ####
##### ##
### ## ### ##
## ## ## ##
# ## ## ##
## ## ## ##
## #### ## ###
### #####
#### ### #### ###
##### #### ##
### ##
### ##
##### ##
##### ##
#### ##
######
###
10 changes: 10 additions & 0 deletions src/logo/builtin.c
Original file line number Diff line number Diff line change
Expand Up @@ -4197,6 +4197,16 @@ static const FFlogo Q[] = {
FF_COLOR_FG_RED,
},
},
// Quasar
{
.names = { "Quasar" },
.lines = FASTFETCH_DATATEXT_LOGO_QUASAR,
.colors = {
FF_COLOR_FG_WHITE
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚪ LOW RISK

Nitpick: The indentation here is inconsistent with the surrounding code (should be aligned to 12 spaces) and the project style for array elements. Adding a trailing comma is also recommended for consistency with other logo definitions.

Suggested change
FF_COLOR_FG_WHITE
FF_COLOR_FG_WHITE,

},
.colorKeys = FF_COLOR_FG_BLUE,
.colorTitle = FF_COLOR_FG_DEFAULT,
},
// Qubes
{
.names = { "Qubes" },
Expand Down