diff options
author | rbuj <[email protected]> | 2019-03-21 20:20:29 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-03-24 15:58:18 +0100 |
commit | 27ab3d81f72397f74af14dc0146e0689837da806 (patch) | |
tree | bb973f53cf00f47ba3adf14c685e2f3ec16039e0 /mate/256x256/apps/Makefile.am | |
parent | b42f8c5fc9bfc15ba5f761359ac5233abdecf0ef (diff) | |
download | mate-icon-theme-27ab3d81f72397f74af14dc0146e0689837da806.tar.bz2 mate-icon-theme-27ab3d81f72397f74af14dc0146e0689837da806.tar.xz |
Update terminal icons for mate theme
icons:
apps/utilities-terminal
apps/utilities-system-monitor
clean & build:
make -C mate clean-png-icons
make -C mate build-png-icons
Diffstat (limited to 'mate/256x256/apps/Makefile.am')
-rw-r--r-- | mate/256x256/apps/Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mate/256x256/apps/Makefile.am b/mate/256x256/apps/Makefile.am new file mode 100644 index 0000000..59e3d58 --- /dev/null +++ b/mate/256x256/apps/Makefile.am @@ -0,0 +1,20 @@ +NULL = + +png_icons = \ + utilities-system-monitor.png \ + utilities-terminal.png \ + $(NULL) + +utilities-system-monitor.png: ../../../src/terminals.svg + inkscape -z $^ --export-area=422:0:678:256 -w=256 -h=256 -e=$@ + +utilities-terminal.png: ../../../src/terminals.svg + inkscape -z $^ --export-area=22:0:278:256 -w=256 -h=256 -e=$@ + +.PHONY: build-icons-local clean-icons-local +build-png-icons-local: $(png_icons) + @echo Building icons... + +clean-png-icons-local: + @echo Cleaning icons... + rm -f $(png_icons) |