From c8ac150b8a7aca83fb984eac0b2619b4daf30071 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 26 Mar 2019 17:27:58 +0100 Subject: Gen png icons from source. Mate: apps, categories & devices clean & build: make -C mate clean-png-icons make -C mate build-png-icons --- mate/256x256/devices/Makefile.am | 190 +++++++++++++++++++++ mate/256x256/devices/ac-adapter.png | Bin 35206 -> 36687 bytes mate/256x256/devices/audio-headphones.png | Bin 0 -> 22879 bytes mate/256x256/devices/audio-headset.png | Bin 0 -> 27340 bytes mate/256x256/devices/audio-input-microphone.png | Bin 35558 -> 40236 bytes mate/256x256/devices/audio-speakers.png | Bin 0 -> 59120 bytes mate/256x256/devices/battery.png | Bin 11276 -> 11974 bytes mate/256x256/devices/camera-photo.png | Bin 35484 -> 39712 bytes mate/256x256/devices/camera-video.png | Bin 0 -> 28276 bytes mate/256x256/devices/camera-web.png | Bin 0 -> 32478 bytes mate/256x256/devices/computer.png | Bin 37416 -> 39015 bytes mate/256x256/devices/drive-harddisk.png | Bin 27782 -> 20735 bytes mate/256x256/devices/drive-multidisk.png | Bin 0 -> 35551 bytes mate/256x256/devices/drive-optical.png | Bin 22541 -> 24615 bytes mate/256x256/devices/drive-removable-media.png | Bin 12158 -> 12942 bytes mate/256x256/devices/input-dialpad.png | Bin 0 -> 30630 bytes mate/256x256/devices/input-gaming.png | Bin 0 -> 24759 bytes mate/256x256/devices/input-keyboard.png | Bin 15163 -> 15869 bytes mate/256x256/devices/input-mouse.png | Bin 0 -> 26211 bytes mate/256x256/devices/input-tablet.png | Bin 0 -> 23222 bytes mate/256x256/devices/media-flash.png | Bin 53447 -> 53074 bytes mate/256x256/devices/media-floppy.png | Bin 0 -> 34953 bytes mate/256x256/devices/media-optical.png | Bin 49992 -> 57136 bytes mate/256x256/devices/media-removable.png | Bin 0 -> 37891 bytes mate/256x256/devices/multimedia-player.png | Bin 21179 -> 21950 bytes mate/256x256/devices/phone.png | Bin 0 -> 19039 bytes mate/256x256/devices/printer-network.png | Bin 0 -> 18582 bytes mate/256x256/devices/printer.png | Bin 15592 -> 16092 bytes mate/256x256/devices/scanner.png | Bin 0 -> 22619 bytes .../devices/uninterruptible-power-supply.png | Bin 0 -> 12264 bytes mate/256x256/devices/video-display.png | Bin 24708 -> 26375 bytes 31 files changed, 190 insertions(+) create mode 100644 mate/256x256/devices/Makefile.am create mode 100644 mate/256x256/devices/audio-headphones.png create mode 100644 mate/256x256/devices/audio-headset.png create mode 100644 mate/256x256/devices/audio-speakers.png create mode 100644 mate/256x256/devices/camera-video.png create mode 100644 mate/256x256/devices/camera-web.png create mode 100644 mate/256x256/devices/drive-multidisk.png create mode 100644 mate/256x256/devices/input-dialpad.png create mode 100644 mate/256x256/devices/input-gaming.png create mode 100644 mate/256x256/devices/input-mouse.png create mode 100644 mate/256x256/devices/input-tablet.png create mode 100644 mate/256x256/devices/media-floppy.png create mode 100644 mate/256x256/devices/media-removable.png create mode 100644 mate/256x256/devices/phone.png create mode 100644 mate/256x256/devices/printer-network.png create mode 100644 mate/256x256/devices/scanner.png create mode 100644 mate/256x256/devices/uninterruptible-power-supply.png (limited to 'mate/256x256/devices') diff --git a/mate/256x256/devices/Makefile.am b/mate/256x256/devices/Makefile.am new file mode 100644 index 0000000..9b2ec8f --- /dev/null +++ b/mate/256x256/devices/Makefile.am @@ -0,0 +1,190 @@ +NULL = + +png_icons = \ + ac-adapter.png \ + audio-headphones.png \ + audio-headset.png \ + audio-input-microphone.png \ + audio-speakers.png \ + battery.png \ + camera-photo.png \ + camera-video.png \ + camera-web.png \ + computer.png \ + drive-harddisk.png \ + drive-multidisk.png \ + drive-optical.png \ + drive-removable-media.png \ + input-dialpad.png \ + input-gaming.png \ + input-keyboard.png \ + input-mouse.png \ + input-tablet.png \ + media-flash.png \ + media-floppy.png \ + media-optical.png \ + media-removable.png \ + multimedia-player.png \ + phone.png \ + printer.png \ + printer-network.png \ + scanner.png \ + uninterruptible-power-supply.png \ + video-display.png \ + $(NULL) + +ac-adapter.png: ../../../src/batteries.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +audio-headphones.png: ../../../src/audio-headphones.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:311:278:567 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +audio-headset.png: ../../../src/audio-headphones.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +audio-input-microphone.png: ../../../src/audio-input-microphone.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +audio-speakers.png: ../../../src/audio-speakers.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:16:272:272 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +battery.png: ../../../src/batteries.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:611:278:867 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +camera-photo.png: ../../../src/camera-photo.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +camera-video.png: ../../../src/camera-video.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +camera-web.png: ../../../src/camera-web.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +computer.png: ../../../src/computers.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:322:272:578 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +drive-harddisk.png: ../../../src/drive-harddisk.svg + @echo " "$@ + @inkscape -z $^ --export-area=19:11:275:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +drive-multidisk.png: ../../../src/drive-multidisk.svg + @echo " "$@ + @inkscape -z $^ --export-area=20:11:276:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +drive-optical.png: ../../../src/drives.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +drive-removable-media.png: ../../../src/drives.svg + @echo " "$@ + @inkscape -z $^ --export-area=416:16:672:272 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +input-dialpad.png: ../../../src/input-dialpad.svg + @echo " "$@ + @inkscape -z $^ --export-area=11:11:267:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +input-gaming.png: ../../../src/input-gaming.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:16:278:272 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +input-keyboard.png: ../../../src/keyboards.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +input-mouse.png: ../../../src/input-mouse.svg + @echo " "$@ + @inkscape -z $^ --export-area=11:11:267:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +input-tablet.png: ../../../src/input-tablet.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +media-flash.png: ../../../src/media-flash.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:16:278:272 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ +media-floppy.png: ../../../src/media-floppy.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +media-optical.png: ../../../src/media-optical.svg + @echo " "$@ + @inkscape -z $^ --export-area=15:7:271:263 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +media-removable.png: ../../../src/media-removable.svg + @echo " "$@ + @inkscape -z $^ --export-area=11:22:267:278 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +multimedia-player.png: ../../../src/multimedia-player.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +phone.png: ../../../src/phone.svg + @echo " "$@ + @inkscape -z $^ --export-area=11:11:267:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +printer.png: ../../../src/printers.svg + @echo " "$@ + @inkscape -z $^ --export-area=20:303:276:559 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +printer-network.png: ../../../src/printer-network.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +scanner.png: ../../../src/scanner.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:16:272:272 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +uninterruptible-power-supply.png: ../../../src/uninterruptible-power-supply.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:11:278:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +video-display.png: ../../../src/displays.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:311:278:567 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +.PHONY: build-png-icons-local clean-png-icons-local +build-png-icons-local: $(png_icons) + +clean-png-icons-local: + @echo " Cleaning icons..." + @rm -f $(png_icons) diff --git a/mate/256x256/devices/ac-adapter.png b/mate/256x256/devices/ac-adapter.png index a1e6d78..c8115bd 100644 Binary files a/mate/256x256/devices/ac-adapter.png and b/mate/256x256/devices/ac-adapter.png differ diff --git a/mate/256x256/devices/audio-headphones.png b/mate/256x256/devices/audio-headphones.png new file mode 100644 index 0000000..84bf1c2 Binary files /dev/null and b/mate/256x256/devices/audio-headphones.png differ diff --git a/mate/256x256/devices/audio-headset.png b/mate/256x256/devices/audio-headset.png new file mode 100644 index 0000000..7f4b04f Binary files /dev/null and b/mate/256x256/devices/audio-headset.png differ diff --git a/mate/256x256/devices/audio-input-microphone.png b/mate/256x256/devices/audio-input-microphone.png index e5ba6a8..b3c2fb6 100644 Binary files a/mate/256x256/devices/audio-input-microphone.png and b/mate/256x256/devices/audio-input-microphone.png differ diff --git a/mate/256x256/devices/audio-speakers.png b/mate/256x256/devices/audio-speakers.png new file mode 100644 index 0000000..75bce0b Binary files /dev/null and b/mate/256x256/devices/audio-speakers.png differ diff --git a/mate/256x256/devices/battery.png b/mate/256x256/devices/battery.png index 7524902..4882817 100644 Binary files a/mate/256x256/devices/battery.png and b/mate/256x256/devices/battery.png differ diff --git a/mate/256x256/devices/camera-photo.png b/mate/256x256/devices/camera-photo.png index 907a722..31e9412 100644 Binary files a/mate/256x256/devices/camera-photo.png and b/mate/256x256/devices/camera-photo.png differ diff --git a/mate/256x256/devices/camera-video.png b/mate/256x256/devices/camera-video.png new file mode 100644 index 0000000..dfc9586 Binary files /dev/null and b/mate/256x256/devices/camera-video.png differ diff --git a/mate/256x256/devices/camera-web.png b/mate/256x256/devices/camera-web.png new file mode 100644 index 0000000..33ebcdb Binary files /dev/null and b/mate/256x256/devices/camera-web.png differ diff --git a/mate/256x256/devices/computer.png b/mate/256x256/devices/computer.png index 4c3fb2e..3aa0fd9 100644 Binary files a/mate/256x256/devices/computer.png and b/mate/256x256/devices/computer.png differ diff --git a/mate/256x256/devices/drive-harddisk.png b/mate/256x256/devices/drive-harddisk.png index f0096fc..82d0407 100644 Binary files a/mate/256x256/devices/drive-harddisk.png and b/mate/256x256/devices/drive-harddisk.png differ diff --git a/mate/256x256/devices/drive-multidisk.png b/mate/256x256/devices/drive-multidisk.png new file mode 100644 index 0000000..f7e604e Binary files /dev/null and b/mate/256x256/devices/drive-multidisk.png differ diff --git a/mate/256x256/devices/drive-optical.png b/mate/256x256/devices/drive-optical.png index 4dc6d06..5cb1f7a 100644 Binary files a/mate/256x256/devices/drive-optical.png and b/mate/256x256/devices/drive-optical.png differ diff --git a/mate/256x256/devices/drive-removable-media.png b/mate/256x256/devices/drive-removable-media.png index 0ae6924..35d082e 100644 Binary files a/mate/256x256/devices/drive-removable-media.png and b/mate/256x256/devices/drive-removable-media.png differ diff --git a/mate/256x256/devices/input-dialpad.png b/mate/256x256/devices/input-dialpad.png new file mode 100644 index 0000000..4f33fb6 Binary files /dev/null and b/mate/256x256/devices/input-dialpad.png differ diff --git a/mate/256x256/devices/input-gaming.png b/mate/256x256/devices/input-gaming.png new file mode 100644 index 0000000..5afb5c9 Binary files /dev/null and b/mate/256x256/devices/input-gaming.png differ diff --git a/mate/256x256/devices/input-keyboard.png b/mate/256x256/devices/input-keyboard.png index 2189aa4..7724117 100644 Binary files a/mate/256x256/devices/input-keyboard.png and b/mate/256x256/devices/input-keyboard.png differ diff --git a/mate/256x256/devices/input-mouse.png b/mate/256x256/devices/input-mouse.png new file mode 100644 index 0000000..6848842 Binary files /dev/null and b/mate/256x256/devices/input-mouse.png differ diff --git a/mate/256x256/devices/input-tablet.png b/mate/256x256/devices/input-tablet.png new file mode 100644 index 0000000..dc59d45 Binary files /dev/null and b/mate/256x256/devices/input-tablet.png differ diff --git a/mate/256x256/devices/media-flash.png b/mate/256x256/devices/media-flash.png index 9877520..9439762 100644 Binary files a/mate/256x256/devices/media-flash.png and b/mate/256x256/devices/media-flash.png differ diff --git a/mate/256x256/devices/media-floppy.png b/mate/256x256/devices/media-floppy.png new file mode 100644 index 0000000..511f2be Binary files /dev/null and b/mate/256x256/devices/media-floppy.png differ diff --git a/mate/256x256/devices/media-optical.png b/mate/256x256/devices/media-optical.png index 1442c80..96cbff5 100644 Binary files a/mate/256x256/devices/media-optical.png and b/mate/256x256/devices/media-optical.png differ diff --git a/mate/256x256/devices/media-removable.png b/mate/256x256/devices/media-removable.png new file mode 100644 index 0000000..0b22eeb Binary files /dev/null and b/mate/256x256/devices/media-removable.png differ diff --git a/mate/256x256/devices/multimedia-player.png b/mate/256x256/devices/multimedia-player.png index 3c45e30..3d441b2 100644 Binary files a/mate/256x256/devices/multimedia-player.png and b/mate/256x256/devices/multimedia-player.png differ diff --git a/mate/256x256/devices/phone.png b/mate/256x256/devices/phone.png new file mode 100644 index 0000000..8512277 Binary files /dev/null and b/mate/256x256/devices/phone.png differ diff --git a/mate/256x256/devices/printer-network.png b/mate/256x256/devices/printer-network.png new file mode 100644 index 0000000..5a253db Binary files /dev/null and b/mate/256x256/devices/printer-network.png differ diff --git a/mate/256x256/devices/printer.png b/mate/256x256/devices/printer.png index 987b06c..f354966 100644 Binary files a/mate/256x256/devices/printer.png and b/mate/256x256/devices/printer.png differ diff --git a/mate/256x256/devices/scanner.png b/mate/256x256/devices/scanner.png new file mode 100644 index 0000000..fc390ce Binary files /dev/null and b/mate/256x256/devices/scanner.png differ diff --git a/mate/256x256/devices/uninterruptible-power-supply.png b/mate/256x256/devices/uninterruptible-power-supply.png new file mode 100644 index 0000000..62df073 Binary files /dev/null and b/mate/256x256/devices/uninterruptible-power-supply.png differ diff --git a/mate/256x256/devices/video-display.png b/mate/256x256/devices/video-display.png index 08d72dc..2b8ac23 100644 Binary files a/mate/256x256/devices/video-display.png and b/mate/256x256/devices/video-display.png differ -- cgit v1.2.1