Mathieu Broillet
8e9efebeb1
All checks were successful
continuous-integration/drone/push Build is passing
18 lines
894 B
Markdown
18 lines
894 B
Markdown
---
|
|
title: "How to replace Google emoji by Twitter's on Fedora"
|
|
date: 2023-06-11T13:06:44+02:00
|
|
draft: false
|
|
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 >}} |