dotfiles/inkscape/extensions/update_svg2tikz.sh
2024-11-24 02:51:04 -06:00

9 lines
326 B
Bash

#!/bin/sh
RAW_GITHUB_URL="https://raw.githubusercontent.com/xyz2tex/svg2tikz/refs/heads/master/svg2tikz"
INKSCAPE_EXTENSIONS="$HOME/.config/inkscape/extensions"
FILES="tikz_export.py tikz_export_effect.inx tikz_export_output.inx"
for file in $FILES; do
wget -qO "$INKSCAPE_EXTENSIONS/$file" "$RAW_GITHUB_URL/$file"
done