From a759aed1613e2a5cff9a021a9421fb0343cd6eee Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Fri, 30 Jul 2010 17:41:34 +0200 Subject: new icon by Sofias --- icons/128x128/deadbeef.png | Bin 0 -> 51615 bytes icons/16x16/deadbeef.png | Bin 673 -> 1624 bytes icons/192x192/deadbeef.png | Bin 0 -> 101016 bytes icons/22x22/deadbeef.png | Bin 0 -> 2644 bytes icons/24x24/deadbeef.png | Bin 1133 -> 3125 bytes icons/256x256/deadbeef.png | Bin 0 -> 159100 bytes icons/32x32/deadbeef.png | Bin 1737 -> 5022 bytes icons/36x36/deadbeef.png | Bin 0 -> 6150 bytes icons/48x48/deadbeef.png | Bin 3261 -> 10035 bytes icons/64x64/deadbeef.png | Bin 0 -> 16291 bytes icons/72x72/deadbeef.png | Bin 0 -> 19623 bytes icons/96x96/deadbeef.png | Bin 0 -> 31949 bytes icons/Makefile.am | 24 +++ icons/make_png_icons.pl | 10 ++ icons/scalable/deadbeef.svg | 418 ++++++++++++++++++++++++++++++++++++++++++++ 15 files changed, 452 insertions(+) create mode 100644 icons/128x128/deadbeef.png create mode 100644 icons/192x192/deadbeef.png create mode 100644 icons/22x22/deadbeef.png create mode 100644 icons/256x256/deadbeef.png create mode 100644 icons/36x36/deadbeef.png create mode 100644 icons/64x64/deadbeef.png create mode 100644 icons/72x72/deadbeef.png create mode 100644 icons/96x96/deadbeef.png create mode 100755 icons/make_png_icons.pl create mode 100644 icons/scalable/deadbeef.svg (limited to 'icons') diff --git a/icons/128x128/deadbeef.png b/icons/128x128/deadbeef.png new file mode 100644 index 00000000..5ba1e0bf Binary files /dev/null and b/icons/128x128/deadbeef.png differ diff --git a/icons/16x16/deadbeef.png b/icons/16x16/deadbeef.png index 829b238c..d6958cdf 100644 Binary files a/icons/16x16/deadbeef.png and b/icons/16x16/deadbeef.png differ diff --git a/icons/192x192/deadbeef.png b/icons/192x192/deadbeef.png new file mode 100644 index 00000000..a1559a51 Binary files /dev/null and b/icons/192x192/deadbeef.png differ diff --git a/icons/22x22/deadbeef.png b/icons/22x22/deadbeef.png new file mode 100644 index 00000000..38a92e82 Binary files /dev/null and b/icons/22x22/deadbeef.png differ diff --git a/icons/24x24/deadbeef.png b/icons/24x24/deadbeef.png index 263347e4..6384ff3a 100644 Binary files a/icons/24x24/deadbeef.png and b/icons/24x24/deadbeef.png differ diff --git a/icons/256x256/deadbeef.png b/icons/256x256/deadbeef.png new file mode 100644 index 00000000..133284a5 Binary files /dev/null and b/icons/256x256/deadbeef.png differ diff --git a/icons/32x32/deadbeef.png b/icons/32x32/deadbeef.png index 1abdb062..7220a48f 100644 Binary files a/icons/32x32/deadbeef.png and b/icons/32x32/deadbeef.png differ diff --git a/icons/36x36/deadbeef.png b/icons/36x36/deadbeef.png new file mode 100644 index 00000000..5a8a1312 Binary files /dev/null and b/icons/36x36/deadbeef.png differ diff --git a/icons/48x48/deadbeef.png b/icons/48x48/deadbeef.png index 64ddae2c..166745f1 100644 Binary files a/icons/48x48/deadbeef.png and b/icons/48x48/deadbeef.png differ diff --git a/icons/64x64/deadbeef.png b/icons/64x64/deadbeef.png new file mode 100644 index 00000000..d24f1ccb Binary files /dev/null and b/icons/64x64/deadbeef.png differ diff --git a/icons/72x72/deadbeef.png b/icons/72x72/deadbeef.png new file mode 100644 index 00000000..c5fc3d84 Binary files /dev/null and b/icons/72x72/deadbeef.png differ diff --git a/icons/96x96/deadbeef.png b/icons/96x96/deadbeef.png new file mode 100644 index 00000000..10a5a4ae Binary files /dev/null and b/icons/96x96/deadbeef.png differ diff --git a/icons/Makefile.am b/icons/Makefile.am index fd602633..602bbef9 100644 --- a/icons/Makefile.am +++ b/icons/Makefile.am @@ -3,13 +3,37 @@ iconspath=@top_srcdir@/icons icon16dir=$(prefix)/share/icons/hicolor/16x16/apps icon16_DATA=$(iconspath)/16x16/deadbeef.png +icon22dir=$(prefix)/share/icons/hicolor/22x22/apps +icon22_DATA=$(iconspath)/22x22/deadbeef.png + icon24dir=$(prefix)/share/icons/hicolor/24x24/apps icon24_DATA=$(iconspath)/24x24/deadbeef.png icon32dir=$(prefix)/share/icons/hicolor/32x32/apps icon32_DATA=$(iconspath)/32x32/deadbeef.png +icon36dir=$(prefix)/share/icons/hicolor/36x36/apps +icon36_DATA=$(iconspath)/36x36/deadbeef.png + icon48dir=$(prefix)/share/icons/hicolor/48x48/apps icon48_DATA=$(iconspath)/48x48/deadbeef.png +icon64dir=$(prefix)/share/icons/hicolor/64x64/apps +icon64_DATA=$(iconspath)/64x64/deadbeef.png + +icon72dir=$(prefix)/share/icons/hicolor/72x72/apps +icon72_DATA=$(iconspath)/72x72/deadbeef.png + +icon96dir=$(prefix)/share/icons/hicolor/96x96/apps +icon96_DATA=$(iconspath)/96x96/deadbeef.png + +icon128dir=$(prefix)/share/icons/hicolor/128x128/apps +icon128_DATA=$(iconspath)/128x128/deadbeef.png + +icon192dir=$(prefix)/share/icons/hicolor/192x192/apps +icon192_DATA=$(iconspath)/192x192/deadbeef.png + +icon256dir=$(prefix)/share/icons/hicolor/256x256/apps +icon256_DATA=$(iconspath)/256x256/deadbeef.png + EXTRA_DIST = $(icon16_DATA) $(icon24_DATA) $(icon32_DATA) $(icon48_DATA) diff --git a/icons/make_png_icons.pl b/icons/make_png_icons.pl new file mode 100755 index 00000000..7b7d419f --- /dev/null +++ b/icons/make_png_icons.pl @@ -0,0 +1,10 @@ +#!/usr/bin/perl + +@lst = qw(16 22 24 32 36 48 64 72 96 128 192 256); +foreach $i (@lst) { + $size = $i-2; + $size = $size.'x'.$size; + $dir = $i.'x'.$i; + `mkdir $dir`; + `convert -density 100 -background None scalable/deadbeef.svg -bordercolor None -support 0.1 -resize $size -border 1x1 $dir/deadbeef.png`; +} diff --git a/icons/scalable/deadbeef.svg b/icons/scalable/deadbeef.svg new file mode 100644 index 00000000..451a5762 --- /dev/null +++ b/icons/scalable/deadbeef.svg @@ -0,0 +1,418 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + -- cgit v1.2.3