konsole-support-emoji
https://gist.github.com/IgnoredAmbience/7c99b6cf9a8b73c9312a71d1209d9bbb
- Ensure that the Noto fonts are installed on your machine.
- Install this file to ~/.config/fontconfig/conf.d/99-noto-mono-color-emoji.conf
- Run `fc-cache`
- Set Konsole to use "IBM Plex Mono" as the font.
- Restart Konsole.
```bash sudo pacman -S noto-fonts-emoji nerd-fonts-ibm-plex-mono mkdir -p ~/.config/fontconfig/conf.d/ emacs -nw ~/.config/fontconfig/conf.d/99-noto-mono-color-emoji.conf fc-cache ```
`99-noto-mono-color-emoji.conf`:
```text <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig> <match> <test name="family"><string>IBM Plex Mono</string></test> <edit name="family" mode="prepend" binding="strong"> <string>Noto Color Emoji</string> </edit> </match> </fontconfig> ```