It worked! I appreciate it so much!
So, if i keep adding my fonts, i make the code in the config, put the new one in proffieOS config folder, verify and upload it, make sure the font file is on my SD card, it should work for all the other fonts?
also uh…how do i turn the volume down haha. it seems to have completely changed my 2 button controls
thats coming in at 98% so you wont get many more fonts on
your using fetts prop so have a read through this to learn the controls
how do i delete the fonts i dont want? i really only want kyberphonics survivor fonts on there plus the few grayscale fonts and maybe a few more. do i delete them in the config and in the sd?
you dont necessarily have to delete them from the sd card but to remove them from your saber you wil have to remove the preset from the config and save the changes
Or you can also comment out the ones you don’t want.
To do that you add /*
before the preset you want to ignore and */
after it. If several presets you want to ignore follow each other, you can put the */
at the end of the last one and they will all be ignored at once.
/*
preset or presets you want to ignore
*/
You can also move all the fonts you want to ignore between one set of /*
and */
to have them all in one place. It makes it easier to find and “re-activate” one that you decide you want again. Just move it out of the /* ... */
list
edited
You could also use
#if 0
#endif
Anything in there will be ignored.
Change the 0 to 1 to stop ignoring .
#if 0
#endif
Would be more correct, fwiw, #ifdef 1
will still do nothing.
lol. Writing on train, that’s what I meant. Corrected, thanks.