11 lines
278 B
Bash
11 lines
278 B
Bash
#!/bin/bash
|
|
|
|
# Install emoji fonts for Raspberry Pi
|
|
echo "Installing emoji font support for Raspberry Pi..."
|
|
|
|
apt-get update -qq
|
|
apt-get install -y fonts-noto-color-emoji fonts-noto-emoji
|
|
|
|
echo "✅ Emoji fonts installed!"
|
|
echo "Please restart your browser to see the changes."
|