8 lines
370 B
Bash
8 lines
370 B
Bash
#!/bin/bash
|
|
wget -O /tmp/NotoColorEmoji.ttf https://github.com/googlefonts/noto-emoji/raw/main/fonts/NotoColorEmoji.ttf || error "Failed to download NotoColorEmoji.ttf!"
|
|
|
|
sudo mkdir -p /usr/local/share/fonts || error "Failed to create /usr/local/share/fonts folder!"
|
|
sudo mv /tmp/NotoColorEmoji.ttf /usr/local/share/fonts
|
|
|
|
fc-cache -f || error "Failed to run fc-cache!"
|