diff options
author | rbuj <[email protected]> | 2019-04-01 15:36:21 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-04-09 10:03:05 +0200 |
commit | 4242025857f3edb4eadaa7bd4248e5123b70b6d0 (patch) | |
tree | 336f25da44ae3ecf29a36f9c0e6d18b214d446f2 /mate/22x22/emblems | |
parent | 494e9e8c1aadfa90c754660cbe01493b4ff234ec (diff) | |
download | mate-icon-theme-4242025857f3edb4eadaa7bd4248e5123b70b6d0.tar.bz2 mate-icon-theme-4242025857f3edb4eadaa7bd4248e5123b70b6d0.tar.xz |
Gen png icons from source - Mate theme
clean & build:
make -C mate clean-png-icons
make -C mate build-png-icons
Diffstat (limited to 'mate/22x22/emblems')
19 files changed, 119 insertions, 0 deletions
diff --git a/mate/22x22/emblems/Makefile.am b/mate/22x22/emblems/Makefile.am new file mode 100644 index 0000000..a96ffa8 --- /dev/null +++ b/mate/22x22/emblems/Makefile.am @@ -0,0 +1,119 @@ +NULL = + +png_icons = \ + emblem-default.png \ + emblem-documents.png \ + emblem-downloads.png \ + emblem-favorite.png \ + emblem-generic.png \ + emblem-important.png \ + emblem-mail.png \ + emblem-new.png \ + emblem-package.png \ + emblem-photos.png \ + emblem-readonly.png \ + emblem-shared.png \ + emblem-symbolic-link.png \ + emblem-synchronizing.png \ + emblem-system.png \ + emblem-unreadable.png \ + emblem-urgent.png \ + emblem-web.png \ + $(NULL) + +emblem-default.png: ../../../src/emblem-default.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-documents.png: ../../../src/emblem-documents.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-downloads.png: ../../../src/emblem-downloads.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-favorite.png: ../../../src/emblem-favorite.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-generic.png: ../../../src/emblem-generic.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-important.png: ../../../src/emblem-important.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-mail.png: ../../../src/emblem-mail.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-new.png: ../../../src/emblem-new.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-package.png: ../../../src/packages.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:102:325:124 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-photos.png: ../../../src/emblem-photos.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-readonly.png: ../../../src/emblems-fs.svg + @echo " "$@ + @inkscape -z $^ --export-area=1103:100:1125:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-shared.png: ../../../src/emblem-shared.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-symbolic-link.png: ../../../src/emblems-fs.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-synchronizing.png: ../../../src/emblem-synchronizing.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-system.png: ../../../src/emblem-system.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-unreadable.png: ../../../src/emblems-fs.svg + @echo " "$@ + @inkscape -z $^ --export-area=703:100:725:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-urgent.png: ../../../src/emblem-urgent.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +emblem-web.png: ../../../src/emblem-web.svg + @echo " "$@ + @inkscape -z $^ --export-area=303:101:325:123 -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/emblems/emblem-default.png b/mate/22x22/emblems/emblem-default.png Binary files differindex 870faff..d0bcdcc 100644 --- a/mate/22x22/emblems/emblem-default.png +++ b/mate/22x22/emblems/emblem-default.png diff --git a/mate/22x22/emblems/emblem-documents.png b/mate/22x22/emblems/emblem-documents.png Binary files differindex 6e68a77..5bf48c4 100644 --- a/mate/22x22/emblems/emblem-documents.png +++ b/mate/22x22/emblems/emblem-documents.png diff --git a/mate/22x22/emblems/emblem-downloads.png b/mate/22x22/emblems/emblem-downloads.png Binary files differindex 64bc680..a78f4df 100644 --- a/mate/22x22/emblems/emblem-downloads.png +++ b/mate/22x22/emblems/emblem-downloads.png diff --git a/mate/22x22/emblems/emblem-favorite.png b/mate/22x22/emblems/emblem-favorite.png Binary files differindex f21a747..8526a26 100644 --- a/mate/22x22/emblems/emblem-favorite.png +++ b/mate/22x22/emblems/emblem-favorite.png diff --git a/mate/22x22/emblems/emblem-generic.png b/mate/22x22/emblems/emblem-generic.png Binary files differindex 0f11ae1..cca825c 100644 --- a/mate/22x22/emblems/emblem-generic.png +++ b/mate/22x22/emblems/emblem-generic.png diff --git a/mate/22x22/emblems/emblem-important.png b/mate/22x22/emblems/emblem-important.png Binary files differindex d614a96..eeed962 100644 --- a/mate/22x22/emblems/emblem-important.png +++ b/mate/22x22/emblems/emblem-important.png diff --git a/mate/22x22/emblems/emblem-mail.png b/mate/22x22/emblems/emblem-mail.png Binary files differindex 92fb336..3346a5f 100644 --- a/mate/22x22/emblems/emblem-mail.png +++ b/mate/22x22/emblems/emblem-mail.png diff --git a/mate/22x22/emblems/emblem-new.png b/mate/22x22/emblems/emblem-new.png Binary files differindex 02c009c..bde323f 100644 --- a/mate/22x22/emblems/emblem-new.png +++ b/mate/22x22/emblems/emblem-new.png diff --git a/mate/22x22/emblems/emblem-package.png b/mate/22x22/emblems/emblem-package.png Binary files differindex e54cfd3..c6b3287 100644 --- a/mate/22x22/emblems/emblem-package.png +++ b/mate/22x22/emblems/emblem-package.png diff --git a/mate/22x22/emblems/emblem-photos.png b/mate/22x22/emblems/emblem-photos.png Binary files differindex e50f804..156d1c2 100644 --- a/mate/22x22/emblems/emblem-photos.png +++ b/mate/22x22/emblems/emblem-photos.png diff --git a/mate/22x22/emblems/emblem-readonly.png b/mate/22x22/emblems/emblem-readonly.png Binary files differindex 4b0256b..8f0ad68 100644 --- a/mate/22x22/emblems/emblem-readonly.png +++ b/mate/22x22/emblems/emblem-readonly.png diff --git a/mate/22x22/emblems/emblem-shared.png b/mate/22x22/emblems/emblem-shared.png Binary files differindex 839d6a9..1d25ab8 100644 --- a/mate/22x22/emblems/emblem-shared.png +++ b/mate/22x22/emblems/emblem-shared.png diff --git a/mate/22x22/emblems/emblem-symbolic-link.png b/mate/22x22/emblems/emblem-symbolic-link.png Binary files differindex ba34bca..129a8db 100644 --- a/mate/22x22/emblems/emblem-symbolic-link.png +++ b/mate/22x22/emblems/emblem-symbolic-link.png diff --git a/mate/22x22/emblems/emblem-synchronizing.png b/mate/22x22/emblems/emblem-synchronizing.png Binary files differindex 49b648a..7dea4cb 100644 --- a/mate/22x22/emblems/emblem-synchronizing.png +++ b/mate/22x22/emblems/emblem-synchronizing.png diff --git a/mate/22x22/emblems/emblem-system.png b/mate/22x22/emblems/emblem-system.png Binary files differindex 43345e8..a998b75 100644 --- a/mate/22x22/emblems/emblem-system.png +++ b/mate/22x22/emblems/emblem-system.png diff --git a/mate/22x22/emblems/emblem-unreadable.png b/mate/22x22/emblems/emblem-unreadable.png Binary files differindex 5b9f626..77936cf 100644 --- a/mate/22x22/emblems/emblem-unreadable.png +++ b/mate/22x22/emblems/emblem-unreadable.png diff --git a/mate/22x22/emblems/emblem-urgent.png b/mate/22x22/emblems/emblem-urgent.png Binary files differindex 1c395b0..b84de7e 100644 --- a/mate/22x22/emblems/emblem-urgent.png +++ b/mate/22x22/emblems/emblem-urgent.png diff --git a/mate/22x22/emblems/emblem-web.png b/mate/22x22/emblems/emblem-web.png Binary files differindex cb0ca8a..06f9d2a 100644 --- a/mate/22x22/emblems/emblem-web.png +++ b/mate/22x22/emblems/emblem-web.png |