Skip to content

Instantly share code, notes, and snippets.

@surajsharma
Created March 19, 2025 21:36
Show Gist options
  • Save surajsharma/fcc5284da47c0c08caa6d828d0064af9 to your computer and use it in GitHub Desktop.
Save surajsharma/fcc5284da47c0c08caa6d828d0064af9 to your computer and use it in GitHub Desktop.
download and install font on linux
#!/bin/bash
# Define the font URL from Overleaf (direct link to the font file)
FONT_URL="https://filebin.net/xp47sk0a8rew8uel/bm.ttf"
# Define the font name (change this if you know the exact font file name)
FONT_NAME="custom_font.ttf"
# Define the installation directory
FONT_DIR="/usr/share/fonts/truetype/bm"
# Create the fonts directory if it doesn't exist
mkdir -p "$FONT_DIR"
# Download the font using wget
echo "Downloading font..."
wget -O "$FONT_DIR/$FONT_NAME" "$FONT_URL"
# Check if download was successful
if [[ $? -ne 0 ]]; then
echo "Failed to download the font."
exit 1
fi
# Update font cache
echo "Updating font cache..."
fc-cache -f -v
# Verify installation
echo "Installed fonts:"
fc-list | grep "$FONT_NAME"
echo "Font installation completed successfully!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment