2

I have installed Noto Color Emoji font on my system (e.g. Arch: noto-fonts-emoji), but I still see this black-and-white version in the terminal (Konsole):

Konsole showing echo command of the party popper emoji in black and white

However, I expected the color one as displayed in other applications:

KCharSelect application showing the party popper emoji

Emoji Selector application showing the party popper emoji

gertvdijk
  • 13,459
  • 7
  • 45
  • 59

1 Answers1

4

The emojis are shown by the font selected in the terminal/console and the ones from the emoji fonts in color are not taking precedence over them. So it's basically the (limited) emoji support of your console font that masks the use of Noto Color Emoji. One needs a fontconfig to raise the priority of the character (code points) in the emoji fonts to display those from the Noto Color Emoji font.

For Arch Linux, this is provided by the AUR package noto-color-emoji-fontconfig. If you want to configure it manually, add the fontconfig file there manually in /etc/fonts/conf.d/75-noto-color-emoji.conf.

Then restart the application (e.g. Konsole) and it should work:

Konsole showing echo command of the party popper emoji in color

gertvdijk
  • 13,459
  • 7
  • 45
  • 59