element-portable/scripts/update-twemoji.sh
Michael Telatynski f2c59cf2f2
Update Twemoji COLRv0
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2024-11-26 13:37:43 +00:00

23 lines
429 B
Bash
Executable file

#!/bin/bash
set -ex
tmpdir=$(mktemp -d)
scriptdir=$(dirname "$(realpath "$0")")
git clone --depth 1 https://github.com/win98se/twemoji-colr.git "$tmpdir"
pushd "$tmpdir"
# Install dependencies
npm i
# Build fonts
make
woff2_compress "build/Twemoji Mozilla.ttf"
# Move into the right place
mv "build/Twemoji Mozilla.woff2" "$scriptdir/../res/fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2"
# cleanup
popd
rm -Rf "$tmpdir"