Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions src/detection/os/os_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,12 @@ FF_MAYBE_UNUSED static bool detectDebianDerived(FFOSResult* result)
{
if (detectArmbianVersion(result))
return true;
else if (ffStrbufEqualS(&result->id, "limeos"))
{
// LimeOS - Debian-based
ffStrbufSetStatic(&result->idLike, "debian");
return true;
}
Copy link
Copy Markdown
Member

@CarterLi CarterLi Jan 10, 2026

Choose a reason for hiding this comment

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

This is necessary only if ID in /etc/os-release is set as debian, otherwise you should not touch this file.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

ok sir

else if (ffStrbufStartsWithS(&result->name, "Loc-OS"))
{
ffStrbufSetStatic(&result->id, "locos");
Expand Down
23 changes: 23 additions & 0 deletions src/logo/ascii/lime.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$1 ############
Copy link
Copy Markdown
Member

@CarterLi CarterLi Jan 10, 2026

Choose a reason for hiding this comment

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

$1 is not needed.

####### #######
#### ####
### ###### ###### ###
### ######### ######### ###
### ######## ######## ###
### #### ###### ####### ### ###
### ####### ##### ##### ###### ###
## ######## ### ### ######## ##
### ########### ########### ###
## ############ ########### ##
## ##
## ############ ########### ##
### ########### ########### ###
## ######## ### ### ######## ##
### ###### ##### ##### ###### ###
### ### ####### ####### ### ###
### ######### ######### ###
### ######### ######### ###
### ###### ###### ###
#### ####
####### #######
##############
10 changes: 10 additions & 0 deletions src/logo/builtin.c
Original file line number Diff line number Diff line change
Expand Up @@ -2686,6 +2686,16 @@ static const FFlogo L[] = {
.colorKeys = FF_COLOR_FG_BLUE,
.colorTitle = FF_COLOR_FG_BLUE,
},
// LimeOS
{
.names = {"limeos"},
.lines = FASTFETCH_DATATEXT_LOGO_LIME,
.colors = {
FF_COLOR_FG_WHITE,
},
.colorKeys = FF_COLOR_FG_WHITE,
.colorTitle = FF_COLOR_FG_WHITE,
},
// Linspire
{
.names = {"Linspire", "Lindows"},
Expand Down