Bug 418125

Summary: Emoji picker is showing only monochrome icons
Product: [Plasma] plasmashell Reporter: elman <elman>
Component: Emoji SelectorAssignee: Plasma Bugs List <plasma-bugs-null>
Status: RESOLVED NOT A BUG    
Severity: normal CC: kde
Priority: NOR    
Version First Reported In: 5.18.1   
Target Milestone: 1.0   
Platform: Manjaro   
OS: Linux   
Latest Commit: Version Fixed/Implemented In:
Sentry Crash Report:
Attachments: Emoji Picker monochrome icons

Description elman 2020-02-24 09:02:14 UTC
Created attachment 126367 [details]
Emoji Picker monochrome icons

SUMMARY
For some reason Emoji Picker is only showing monochrome icons. I'm using EmojiOne emoticons.

STEPS TO REPRODUCE
1. In my case, just open Emoji Picker

OBSERVED RESULT
I only see monochrome icons.

EXPECTED RESULT
I should see colorful icons, like shown on https://pointieststick.files.wordpress.com/2020/02/screenshot_20200220_122737.png

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Manjaro unstable
KDE Plasma Version: 5.18.1
KDE Frameworks Version: 5.67.0
Qt Version: 5.14.1

ADDITIONAL INFORMATION
See screenshot
Comment 1 David Edmundson 2020-02-24 10:12:54 UTC
support is based off your installed fonts and fontconfig setup

See https://wiki.archlinux.org/index.php/Fonts#Emoji_and_symbols
Comment 2 elman 2020-02-24 11:35:57 UTC
Thanks for the answer, works perfectly!

If somebody else has the same problem, here is my config:

/etc/fonts/conf.d/90-emoji.conf

<fontconfig>
    <match>
        <test name="family">
            <string>sans-serif</string>
        </test>
        <edit mode="prepend" name="family" binding="strong">
            <string>Noto Color Emoji</string>
        </edit>
    </match>
    <match>
        <test name="family">
            <string>serif</string>
        </test>
        <edit mode="prepend" name="family" binding="strong">
            <string>Noto Color Emoji</string>
        </edit>
    </match>
</fontconfig>