desktop-ubuntu/emoji/_install.sh

36 lines
746 B
Bash
Raw Permalink Normal View History

2023-06-18 15:34:39 +02:00
#!/usr/bin/zsh
# get all the fonts
sudo apt install -y \
'fonts-noto-*'
# uninstall outdated noto-emoji
2024-01-20 18:10:59 +01:00
sudo apt-get purge -y \
2023-06-18 15:34:39 +02:00
fonts-noto-color-emoji
2024-01-20 18:10:59 +01:00
sudo apt-get purge -y \
fonts-symbola ttf-ancient-fonts-symbola
2023-06-18 15:34:39 +02:00
# get latest noto-emoji
mkdir -p ~/.fonts/NotoEmoji/
curl -L 'https://raw.githubusercontent.com/googlefonts/noto-emoji/main/fonts/NotoColorEmoji.ttf' \
-o ~/.fonts/NotoEmoji/NotoColorEmoji.ttf
2024-01-20 18:10:59 +01:00
ln -s ~/.fonts/NotoEmoji \
'/usr/local/share/fonts/'
2023-06-18 15:34:39 +02:00
# link font-priority config
cd /Cfg/emoji/
2024-01-20 18:10:59 +01:00
ln -s `pwd`/.fonts.conf \
~/ --force
2023-06-18 15:34:39 +02:00
mkdir -p ~/.config/fontconfig/
2024-01-20 18:10:59 +01:00
ln -s `pwd`/.fonts.conf \
~/.config/fontconfig/fonts.conf --force
2023-06-18 15:34:39 +02:00
# rebuild fonts-cache
2024-01-20 18:10:59 +01:00
fc-cache -f -v
firefox 'https://getemoji.com'