diff options
author | Marvin Borner | 2021-03-30 23:48:05 +0200 |
---|---|---|
committer | Marvin Borner | 2021-03-30 23:48:05 +0200 |
commit | 7686ca622f379d1560cf447f6b33bd279289fdc0 (patch) | |
tree | ffcf7267c4e2bd22c216a884be37d784c1be16e2 /run | |
parent | 5f0d7d14bac8679cef9586b1d0b4926364c46328 (diff) |
Replaced imagemagick with inkscape
Diffstat (limited to 'run')
-rwxr-xr-x | run | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -112,10 +112,10 @@ make_disk() { [ -d icons/ ] || git clone --depth=1 https://github.com/Templarian/MaterialDesign.git icons/ echo "$icons" | while read icon; do echo "Converting $icon" - convert -depth 8 -background none -resize 18x18 icons/svg/"$icon".svg disk/icons/"$icon"-18.png - convert -depth 8 -background none -resize 24x24 icons/svg/"$icon".svg disk/icons/"$icon"-24.png - convert -depth 8 -background none -resize 36x36 icons/svg/"$icon".svg disk/icons/"$icon"-36.png - convert -depth 8 -background none -resize 48x48 icons/svg/"$icon".svg disk/icons/"$icon"-48.png + inkscape -w 18 -h 18 icons/svg/"$icon".svg -o disk/icons/"$icon"-18.png + inkscape -w 24 -h 24 icons/svg/"$icon".svg -o disk/icons/"$icon"-24.png + inkscape -w 36 -h 36 icons/svg/"$icon".svg -o disk/icons/"$icon"-36.png + inkscape -w 48 -h 48 icons/svg/"$icon".svg -o disk/icons/"$icon"-48.png done echo "Done!" |