|
2 | 2 |
|
3 | 3 | # Extract icons from http://modernuiicons.com/ into an directory called 'svg'
|
4 | 4 | # needs imagemagick to be installed
|
| 5 | +# |
| 6 | +# apt-get install librsvg2-bin |
5 | 7 |
|
6 | 8 | cd `dirname $0`
|
7 | 9 | Y=0
|
@@ -35,19 +37,19 @@ function i {
|
35 | 37 |
|
36 | 38 | convert $IMG -resize 60x60\! a.png
|
37 | 39 | convert $IMG -resize 30x30\! b.png
|
38 |
| -convert a.png b.png +append -negate -alpha copy -channel RGB -level 100,100 $TEMPIMG |
| 40 | + convert a.png b.png -background transparent +append -negate -level 100,100 $TEMPIMG |
39 | 41 |
|
40 | 42 | # convert a.png b.png +append -negate -fuzz 100% -transparent black $TEMPIMG
|
41 | 43 | rm a.png b.png
|
42 | 44 | IMAGES="$IMAGES $TEMPIMG"
|
43 |
| -} |
| 45 | +} |
44 | 46 |
|
45 | 47 | # list of OLD icons (in order)
|
46 | 48 | # We do this because old icons looked good, and recreating
|
47 | 49 | # the image from SVG causes icons to be all different sizes :(
|
48 | 50 | o svg/appbar.close cross
|
49 | 51 | o svg/appbar.app window
|
50 |
| -o svg/appbar.minus minus |
| 52 | +o svg/appbar.minus minus |
51 | 53 | o svg/appbar.add plus
|
52 | 54 | o svg/appbar.chevron.left back
|
53 | 55 | o svg/appbar.chevron.right forward
|
@@ -87,6 +89,11 @@ i svg/appbar.control.stop debug-stop
|
87 | 89 | i svg/appbar.debug.step.into debug-into
|
88 | 90 | i svg/appbar.debug.step.out debug-out
|
89 | 91 | i svg/appbar.debug.step.over debug-over
|
| 92 | +i svg/appbar.book.hardcover.open book |
| 93 | +i svg/appbar.chat chat |
| 94 | +i svg/appbar.connection.bluetooth bluetooth |
| 95 | +i svg/appbar.hardware.headphones headphone |
| 96 | +i svg/appbar.network network |
90 | 97 |
|
91 | 98 | # Now put them all together into one file
|
92 | 99 | convert icons/oldicons.png $IMAGES -append $ICONFILE
|
|
0 commit comments