blog/content/general/fedora-emoji.md

18 lines
894 B
Markdown
Raw Normal View History

2023-06-11 16:09:07 +02:00
---
title: "How to replace Google emoji by Twitter's on Fedora"
date: 2023-06-11T13:06:44+02:00
2023-06-11 16:09:58 +02:00
draft: false
2023-06-11 16:09:07 +02:00
author: "Mathieu Broillet"
cover : "img/twitter-emojis.png"
# coverAlt : "alt image"
# coverCaption : "credit of image"
description : "Tired of the defaults noto-sans emojis?"
tags : ['emojis', 'fedora']
---
By default, Fedora uses the Google Noto emojis, but let's be honest, they're not the prettiest ones out there. They can make some apps look less appealing than they could be. That's why I'm going to show you how to install the Twitter emojis, which, in my personal opinion, have a better look. Let's make our Fedora system even more stylish!
{{< code language="BASH" title="Uninstall noto and install twemoji" id="1" expand="Show" collapse="Hide" isCollapsed="false" >}}
sudo dnf remove google-noto-emoji-color-fonts -y
sudo dnf install twitter-twemoji-fonts -y
{{< /code >}}