Skip to content

Instantly share code, notes, and snippets.

@christianbaptista
Created January 8, 2025 19:09
Show Gist options
  • Save christianbaptista/edfc2de529e39efc0e29c8529ddf3c66 to your computer and use it in GitHub Desktop.
Save christianbaptista/edfc2de529e39efc0e29c8529ddf3c66 to your computer and use it in GitHub Desktop.
Notion font number (emoji) error firefox
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
    <match>
        <test name="family">
            <string>Apple Color Emoji</string>
        </test>
        <edit name="family" mode="assign_replace">
            <string>sans-serif</string>
        </edit>
        <edit name="color" mode="assign">
            <bool>false</bool>
        </edit>
    </match>
</fontconfig>

Save this in : ~/.config/fontconfig/conf.d/50-fixup-apple-color-emoji.conf
And reopen firefox.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment