diff --git a/configs/shells/bash/macros.sh b/configs/shells/bash/macros.sh index db9aef6..4a7d0df 100644 --- a/configs/shells/bash/macros.sh +++ b/configs/shells/bash/macros.sh @@ -248,4 +248,13 @@ gh-emulated() { # Only if `gh` is not installed if ! command -v gh &> /dev/null; then alias gh=gh-emulated -fi \ No newline at end of file +fi + +# Convert an SVG to a PNG +svg2png() { + if [ $# != 1 ]; then + echo "Usage: svg2png " + else + inkscape -z "$1.png" "$1" --export-type=png + fi +}