summaryrefslogtreecommitdiff
path: root/icons/make_png_icons.pl
blob: 4b7637a747b4ba115ee20e2e1320db882925666c (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/perl

@lst = qw(16 22 24 32 36 48 64 72 96 128 192 256);
foreach $i (@lst) {
    $dir = $i.'x'.$i;
    `mkdir $dir`;
    `convert -density 100 -background None scalable/deadbeef.svg -support 0.1 -resize $dir  $dir/deadbeef.png`;
}