| Summary: | Emoji picker is showing only monochrome icons | ||
|---|---|---|---|
| Product: | [Plasma] plasmashell | Reporter: | elman <elman> |
| Component: | Emoji Selector | Assignee: | 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
support is based off your installed fonts and fontconfig setup See https://wiki.archlinux.org/index.php/Fonts#Emoji_and_symbols 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>
|