mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-12 10:22:12 +02:00
Chassis: print version; don't print N/A
This commit is contained in:
@@ -23,7 +23,8 @@ static bool hostValueSet(FFstrbuf* value)
|
||||
ffStrbufIgnCaseCompS(value, "Not Applicable") != 0 &&
|
||||
ffStrbufIgnCaseCompS(value, "INVALID") != 0 &&
|
||||
ffStrbufIgnCaseCompS(value, "Type1ProductConfigId") != 0 &&
|
||||
ffStrbufIgnCaseCompS(value, "All Series") != 0
|
||||
ffStrbufIgnCaseCompS(value, "All Series") != 0 &&
|
||||
ffStrbufIgnCaseCompS(value, "N/A") != 0
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
@@ -30,13 +30,10 @@ void ffPrintChassis(FFinstance* instance, FFChassisOptions* options)
|
||||
if(options->moduleArgs.outputFormat.length == 0)
|
||||
{
|
||||
ffPrintLogoAndKey(instance, FF_CHASSIS_MODULE_NAME, 0, &options->moduleArgs.key, &options->moduleArgs.keyColor);
|
||||
|
||||
FF_STRBUF_AUTO_DESTROY output = ffStrbufCreateCopy(&result.chassisType);
|
||||
|
||||
if(result.chassisVersion.length > 0)
|
||||
ffStrbufAppendF(&output, " (%s)", result.chassisVersion.chars);
|
||||
|
||||
ffStrbufPutTo(&output, stdout);
|
||||
ffStrbufWriteTo(&result.chassisType, stdout);
|
||||
if (result.chassisVersion.length)
|
||||
printf(" (%s)", result.chassisVersion.chars);
|
||||
putchar('\n');
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user