diff options
author | rbuj <[email protected]> | 2019-08-12 22:42:30 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-08-20 00:26:38 +0200 |
commit | 9fb9c47166ee36ba846bd4cc7703e3a6696e4d07 (patch) | |
tree | 379c60e0b531f73fab30e0f79dc4060a9fc34540 /mate/22x22 | |
parent | 88d7ce676027bd9d463850893a4ecfa679db11fb (diff) | |
download | mate-icon-theme-9fb9c47166ee36ba846bd4cc7703e3a6696e4d07.tar.bz2 mate-icon-theme-9fb9c47166ee36ba846bd4cc7703e3a6696e4d07.tar.xz |
Gen png mimetypes icons from paper-sheets.svg - Mate theme
clean & build:
make -C mate/16x16/mimetypes clean-png-icons build-png-icons
make -C mate/22x22/mimetypes clean-png-icons build-png-icons
make -C mate/24x24/mimetypes clean-png-icons build-png-icons
make -C mate/32x32/mimetypes clean-png-icons build-png-icons
make -C mate/48x48/mimetypes clean-png-icons build-png-icons
make -C mate/256x256/mimetypes clean-png-icons build-png-icons
Diffstat (limited to 'mate/22x22')
-rw-r--r-- | mate/22x22/Makefile.am | 2 | ||||
-rw-r--r-- | mate/22x22/mimetypes/Makefile.am | 83 | ||||
-rw-r--r-- | mate/22x22/mimetypes/font-x-generic.png | bin | 1476 -> 1293 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/text-html.png | bin | 1318 -> 1089 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/text-x-generic-template.png | bin | 1147 -> 1220 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/text-x-generic.png | bin | 1098 -> 1097 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/text-x-preview.png | bin | 1036 -> 1130 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/text-x-script.png | bin | 1304 -> 1089 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/x-office-document-template.png | bin | 1426 -> 1279 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/x-office-document.png | bin | 1244 -> 1324 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/x-office-drawing-template.png | bin | 1525 -> 1383 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/x-office-drawing.png | bin | 1322 -> 1332 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/x-office-spreadsheet-template.png | bin | 1513 -> 1374 bytes | |||
-rw-r--r-- | mate/22x22/mimetypes/x-office-spreadsheet.png | bin | 1350 -> 1276 bytes |
14 files changed, 85 insertions, 0 deletions
diff --git a/mate/22x22/Makefile.am b/mate/22x22/Makefile.am index 160fec0..89fdf5d 100644 --- a/mate/22x22/Makefile.am +++ b/mate/22x22/Makefile.am @@ -6,6 +6,7 @@ DIST_SUBDIRS = \ categories \ devices \ emblems \ + mimetypes \ places \ status \ $(NULL) @@ -16,6 +17,7 @@ SUBDIRS = \ categories \ devices \ emblems \ + mimetypes \ places \ status \ $(NULL) diff --git a/mate/22x22/mimetypes/Makefile.am b/mate/22x22/mimetypes/Makefile.am new file mode 100644 index 0000000..a95ac5e --- /dev/null +++ b/mate/22x22/mimetypes/Makefile.am @@ -0,0 +1,83 @@ +NULL = + +png_icons = \ + font-x-generic.png \ + text-html.png \ + text-x-generic.png \ + text-x-generic-template.png \ + text-x-preview.png \ + text-x-script.png \ + x-office-document.png \ + x-office-document-template.png \ + x-office-drawing.png \ + x-office-drawing-template.png \ + x-office-spreadsheet.png \ + x-office-spreadsheet-template.png \ + $(NULL) + +font-x-generic.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=301:397:323:419 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +text-html.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=301:1001:323:1023 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +text-x-generic.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=701:1001:723:1023 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +text-x-generic-template.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=1101:1001:1123:1023 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +text-x-preview.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=1101:97:1123:119 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +text-x-script.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=1501:1001:1523:1023 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +x-office-document.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=1901:1001:1923:1023 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +x-office-document-template.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=301:701:323:723 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +x-office-drawing.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=701:701:723:723 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +x-office-drawing-template.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=1101:701:1123:723 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +x-office-spreadsheet.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=1501:697:1523:719 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +x-office-spreadsheet-template.png: ../../../src/paper-sheets.svg + @echo " "$@ + @inkscape -z $^ --export-area=1901:697:1923:719 -w=22 -h=22 -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/22x22/mimetypes/font-x-generic.png b/mate/22x22/mimetypes/font-x-generic.png Binary files differindex d66eb9c..b9eb70b 100644 --- a/mate/22x22/mimetypes/font-x-generic.png +++ b/mate/22x22/mimetypes/font-x-generic.png diff --git a/mate/22x22/mimetypes/text-html.png b/mate/22x22/mimetypes/text-html.png Binary files differindex 614d339..f5daf9a 100644 --- a/mate/22x22/mimetypes/text-html.png +++ b/mate/22x22/mimetypes/text-html.png diff --git a/mate/22x22/mimetypes/text-x-generic-template.png b/mate/22x22/mimetypes/text-x-generic-template.png Binary files differindex 6eecaa7..95ff29a 100644 --- a/mate/22x22/mimetypes/text-x-generic-template.png +++ b/mate/22x22/mimetypes/text-x-generic-template.png diff --git a/mate/22x22/mimetypes/text-x-generic.png b/mate/22x22/mimetypes/text-x-generic.png Binary files differindex a258c7c..33ffb88 100644 --- a/mate/22x22/mimetypes/text-x-generic.png +++ b/mate/22x22/mimetypes/text-x-generic.png diff --git a/mate/22x22/mimetypes/text-x-preview.png b/mate/22x22/mimetypes/text-x-preview.png Binary files differindex 0308798..9f0100a 100644 --- a/mate/22x22/mimetypes/text-x-preview.png +++ b/mate/22x22/mimetypes/text-x-preview.png diff --git a/mate/22x22/mimetypes/text-x-script.png b/mate/22x22/mimetypes/text-x-script.png Binary files differindex 7cbcee0..0426834 100644 --- a/mate/22x22/mimetypes/text-x-script.png +++ b/mate/22x22/mimetypes/text-x-script.png diff --git a/mate/22x22/mimetypes/x-office-document-template.png b/mate/22x22/mimetypes/x-office-document-template.png Binary files differindex ed0f41b..75f901e 100644 --- a/mate/22x22/mimetypes/x-office-document-template.png +++ b/mate/22x22/mimetypes/x-office-document-template.png diff --git a/mate/22x22/mimetypes/x-office-document.png b/mate/22x22/mimetypes/x-office-document.png Binary files differindex 1a316f0..d32cf46 100644 --- a/mate/22x22/mimetypes/x-office-document.png +++ b/mate/22x22/mimetypes/x-office-document.png diff --git a/mate/22x22/mimetypes/x-office-drawing-template.png b/mate/22x22/mimetypes/x-office-drawing-template.png Binary files differindex 8c825da..b7a7aff 100644 --- a/mate/22x22/mimetypes/x-office-drawing-template.png +++ b/mate/22x22/mimetypes/x-office-drawing-template.png diff --git a/mate/22x22/mimetypes/x-office-drawing.png b/mate/22x22/mimetypes/x-office-drawing.png Binary files differindex 2954467..6ffa334 100644 --- a/mate/22x22/mimetypes/x-office-drawing.png +++ b/mate/22x22/mimetypes/x-office-drawing.png diff --git a/mate/22x22/mimetypes/x-office-spreadsheet-template.png b/mate/22x22/mimetypes/x-office-spreadsheet-template.png Binary files differindex 8ddaa43..16ec5fb 100644 --- a/mate/22x22/mimetypes/x-office-spreadsheet-template.png +++ b/mate/22x22/mimetypes/x-office-spreadsheet-template.png diff --git a/mate/22x22/mimetypes/x-office-spreadsheet.png b/mate/22x22/mimetypes/x-office-spreadsheet.png Binary files differindex 8928b0d..2b2d173 100644 --- a/mate/22x22/mimetypes/x-office-spreadsheet.png +++ b/mate/22x22/mimetypes/x-office-spreadsheet.png |