We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8589bf2 commit fae4892Copy full SHA for fae4892
src/fastfetch.c
@@ -790,7 +790,11 @@ static void writeConfigFile(FFdata* data)
790
exit(1);
791
}
792
if (ffWriteFileData(filename->chars, len, str))
793
- printf("The generated config file has been written in `%s`\n", filename->chars);
+ {
794
+ printf("✓ Configuration file generated: `%s`\n"
795
+ "* Tip: Use a JSON schema-aware editor for better editing experience\n"
796
+ "* Documentation: https://github.com/fastfetch-cli/fastfetch/wiki/Configuration\n", filename->chars);
797
+ }
798
else
799
{
800
printf("Error: failed to write file in `%s`\n", filename->chars);
0 commit comments