summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-03-21 20:20:29 +0100
committerraveit65 <[email protected]>2019-03-24 15:57:06 +0100
commitc236eabf6ac46e88f474578ecdfa5b10556ea1f4 (patch)
treefa93824af8643e0c4586e44d9e134be22a1ac842
parentb66e6b66e3d8bb319e13e883694e9d9de61a95fc (diff)
downloadmate-icon-theme-c236eabf6ac46e88f474578ecdfa5b10556ea1f4.tar.bz2
mate-icon-theme-c236eabf6ac46e88f474578ecdfa5b10556ea1f4.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
-rw-r--r--configure.ac13
-rw-r--r--mate/16x16/Makefile.am9
-rw-r--r--mate/16x16/apps/Makefile.am20
-rw-r--r--mate/16x16/apps/utilities-system-monitor.pngbin727 -> 724 bytes
-rw-r--r--mate/16x16/apps/utilities-terminal.pngbin689 -> 697 bytes
-rw-r--r--mate/22x22/Makefile.am9
-rw-r--r--mate/22x22/apps/Makefile.am20
-rw-r--r--mate/22x22/apps/utilities-system-monitor.pngbin1082 -> 1072 bytes
-rw-r--r--mate/22x22/apps/utilities-terminal.pngbin946 -> 945 bytes
-rw-r--r--mate/24x24/Makefile.am9
-rw-r--r--mate/24x24/apps/Makefile.am20
-rw-r--r--mate/24x24/apps/utilities-system-monitor.pngbin1227 -> 1228 bytes
-rw-r--r--mate/24x24/apps/utilities-terminal.pngbin1092 -> 1140 bytes
-rw-r--r--mate/256x256/Makefile.am9
-rw-r--r--mate/256x256/apps/Makefile.am20
-rw-r--r--mate/256x256/apps/utilities-system-monitor.pngbin25084 -> 29184 bytes
-rw-r--r--mate/256x256/apps/utilities-terminal.pngbin18052 -> 24343 bytes
-rw-r--r--mate/32x32/Makefile.am9
-rw-r--r--mate/32x32/apps/Makefile.am20
-rw-r--r--mate/32x32/apps/utilities-system-monitor.pngbin1693 -> 1693 bytes
-rw-r--r--mate/32x32/apps/utilities-terminal.pngbin1483 -> 1490 bytes
-rw-r--r--mate/48x48/Makefile.am9
-rw-r--r--mate/48x48/apps/Makefile.am20
-rw-r--r--mate/48x48/apps/utilities-system-monitor.pngbin2758 -> 2710 bytes
-rw-r--r--mate/48x48/apps/utilities-terminal.pngbin2406 -> 2547 bytes
-rw-r--r--mate/Makefile.am25
26 files changed, 208 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 9d0233f..ca8ed3f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,6 +3,7 @@ AC_PREREQ(2.53)
AC_INIT([mate-icon-theme], [1.22.0], [http://www.mate-desktop.org])
AC_CONFIG_SRCDIR([index.theme.in.in])
+AM_EXTRA_RECURSIVE_TARGETS([clean-png-icons build-png-icons])
AM_INIT_AUTOMAKE([1.9 tar-ustar dist-xz no-dist-gzip foreign check-news])
@@ -62,6 +63,18 @@ po/Makefile.in
src/Makefile
menta/Makefile
mate/Makefile
+mate/16x16/Makefile
+mate/16x16/apps/Makefile
+mate/22x22/Makefile
+mate/22x22/apps/Makefile
+mate/24x24/Makefile
+mate/24x24/apps/Makefile
+mate/32x32/Makefile
+mate/32x32/apps/Makefile
+mate/48x48/Makefile
+mate/48x48/apps/Makefile
+mate/256x256/Makefile
+mate/256x256/apps/Makefile
mate/scalable/Makefile
mate/scalable-up-to-32/Makefile
])
diff --git a/mate/16x16/Makefile.am b/mate/16x16/Makefile.am
new file mode 100644
index 0000000..037fc82
--- /dev/null
+++ b/mate/16x16/Makefile.am
@@ -0,0 +1,9 @@
+NULL =
+
+DIST_SUBDIRS = \
+ apps \
+ $(NULL)
+
+SUBDIRS = \
+ apps \
+ $(NULL)
diff --git a/mate/16x16/apps/Makefile.am b/mate/16x16/apps/Makefile.am
new file mode 100644
index 0000000..c62a33f
--- /dev/null
+++ b/mate/16x16/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=703:65:719:81 -w=16 -h=16 -e=$@
+
+utilities-terminal.png: ../../../src/terminals.svg
+ inkscape -z $^ --export-area=303:65:319:81 -w=16 -h=16 -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)
diff --git a/mate/16x16/apps/utilities-system-monitor.png b/mate/16x16/apps/utilities-system-monitor.png
index 1b0c236..c6b5503 100644
--- a/mate/16x16/apps/utilities-system-monitor.png
+++ b/mate/16x16/apps/utilities-system-monitor.png
Binary files differ
diff --git a/mate/16x16/apps/utilities-terminal.png b/mate/16x16/apps/utilities-terminal.png
index c8772e2..efb0eeb 100644
--- a/mate/16x16/apps/utilities-terminal.png
+++ b/mate/16x16/apps/utilities-terminal.png
Binary files differ
diff --git a/mate/22x22/Makefile.am b/mate/22x22/Makefile.am
new file mode 100644
index 0000000..037fc82
--- /dev/null
+++ b/mate/22x22/Makefile.am
@@ -0,0 +1,9 @@
+NULL =
+
+DIST_SUBDIRS = \
+ apps \
+ $(NULL)
+
+SUBDIRS = \
+ apps \
+ $(NULL)
diff --git a/mate/22x22/apps/Makefile.am b/mate/22x22/apps/Makefile.am
new file mode 100644
index 0000000..ebc0d74
--- /dev/null
+++ b/mate/22x22/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=703:100:725:122 -w=22 -h=22 -e=$@
+
+utilities-terminal.png: ../../../src/terminals.svg
+ inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -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)
diff --git a/mate/22x22/apps/utilities-system-monitor.png b/mate/22x22/apps/utilities-system-monitor.png
index f5d0ac4..b159313 100644
--- a/mate/22x22/apps/utilities-system-monitor.png
+++ b/mate/22x22/apps/utilities-system-monitor.png
Binary files differ
diff --git a/mate/22x22/apps/utilities-terminal.png b/mate/22x22/apps/utilities-terminal.png
index 29b5a79..8f0ad56 100644
--- a/mate/22x22/apps/utilities-terminal.png
+++ b/mate/22x22/apps/utilities-terminal.png
Binary files differ
diff --git a/mate/24x24/Makefile.am b/mate/24x24/Makefile.am
new file mode 100644
index 0000000..037fc82
--- /dev/null
+++ b/mate/24x24/Makefile.am
@@ -0,0 +1,9 @@
+NULL =
+
+DIST_SUBDIRS = \
+ apps \
+ $(NULL)
+
+SUBDIRS = \
+ apps \
+ $(NULL)
diff --git a/mate/24x24/apps/Makefile.am b/mate/24x24/apps/Makefile.am
new file mode 100644
index 0000000..f1c7cbb
--- /dev/null
+++ b/mate/24x24/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=696:202:744:250 -w=24 -h=24 -e=$@
+
+utilities-terminal.png: ../../../src/terminals.svg
+ inkscape -z $^ --export-area=296:202:344:250 -w=24 -h=24 -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)
diff --git a/mate/24x24/apps/utilities-system-monitor.png b/mate/24x24/apps/utilities-system-monitor.png
index 8ab963c..e778402 100644
--- a/mate/24x24/apps/utilities-system-monitor.png
+++ b/mate/24x24/apps/utilities-system-monitor.png
Binary files differ
diff --git a/mate/24x24/apps/utilities-terminal.png b/mate/24x24/apps/utilities-terminal.png
index b2da86b..7ff88be 100644
--- a/mate/24x24/apps/utilities-terminal.png
+++ b/mate/24x24/apps/utilities-terminal.png
Binary files differ
diff --git a/mate/256x256/Makefile.am b/mate/256x256/Makefile.am
new file mode 100644
index 0000000..037fc82
--- /dev/null
+++ b/mate/256x256/Makefile.am
@@ -0,0 +1,9 @@
+NULL =
+
+DIST_SUBDIRS = \
+ apps \
+ $(NULL)
+
+SUBDIRS = \
+ apps \
+ $(NULL)
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)
diff --git a/mate/256x256/apps/utilities-system-monitor.png b/mate/256x256/apps/utilities-system-monitor.png
index a3a3437..fbeaee5 100644
--- a/mate/256x256/apps/utilities-system-monitor.png
+++ b/mate/256x256/apps/utilities-system-monitor.png
Binary files differ
diff --git a/mate/256x256/apps/utilities-terminal.png b/mate/256x256/apps/utilities-terminal.png
index f4c0200..1c53f8c 100644
--- a/mate/256x256/apps/utilities-terminal.png
+++ b/mate/256x256/apps/utilities-terminal.png
Binary files differ
diff --git a/mate/32x32/Makefile.am b/mate/32x32/Makefile.am
new file mode 100644
index 0000000..037fc82
--- /dev/null
+++ b/mate/32x32/Makefile.am
@@ -0,0 +1,9 @@
+NULL =
+
+DIST_SUBDIRS = \
+ apps \
+ $(NULL)
+
+SUBDIRS = \
+ apps \
+ $(NULL)
diff --git a/mate/32x32/apps/Makefile.am b/mate/32x32/apps/Makefile.am
new file mode 100644
index 0000000..970ab1f
--- /dev/null
+++ b/mate/32x32/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=702:141:734:173 -w=32 -h=32 -e=$@
+
+utilities-terminal.png: ../../../src/terminals.svg
+ inkscape -z $^ --export-area=302:141:334:173 -w=32 -h=32 -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)
diff --git a/mate/32x32/apps/utilities-system-monitor.png b/mate/32x32/apps/utilities-system-monitor.png
index d2bdd43..acd4ee2 100644
--- a/mate/32x32/apps/utilities-system-monitor.png
+++ b/mate/32x32/apps/utilities-system-monitor.png
Binary files differ
diff --git a/mate/32x32/apps/utilities-terminal.png b/mate/32x32/apps/utilities-terminal.png
index 83e0ac3..f991b24 100644
--- a/mate/32x32/apps/utilities-terminal.png
+++ b/mate/32x32/apps/utilities-terminal.png
Binary files differ
diff --git a/mate/48x48/Makefile.am b/mate/48x48/Makefile.am
new file mode 100644
index 0000000..037fc82
--- /dev/null
+++ b/mate/48x48/Makefile.am
@@ -0,0 +1,9 @@
+NULL =
+
+DIST_SUBDIRS = \
+ apps \
+ $(NULL)
+
+SUBDIRS = \
+ apps \
+ $(NULL)
diff --git a/mate/48x48/apps/Makefile.am b/mate/48x48/apps/Makefile.am
new file mode 100644
index 0000000..c78ec4f
--- /dev/null
+++ b/mate/48x48/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=696:202:744:250 -w=48 -h=48 -e=$@
+
+utilities-terminal.png: ../../../src/terminals.svg
+ inkscape -z $^ --export-area=296:202:344:250 -w=48 -h=48 -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)
diff --git a/mate/48x48/apps/utilities-system-monitor.png b/mate/48x48/apps/utilities-system-monitor.png
index 327f286..67c419a 100644
--- a/mate/48x48/apps/utilities-system-monitor.png
+++ b/mate/48x48/apps/utilities-system-monitor.png
Binary files differ
diff --git a/mate/48x48/apps/utilities-terminal.png b/mate/48x48/apps/utilities-terminal.png
index 2653f00..309f477 100644
--- a/mate/48x48/apps/utilities-terminal.png
+++ b/mate/48x48/apps/utilities-terminal.png
Binary files differ
diff --git a/mate/Makefile.am b/mate/Makefile.am
index 0aff2bb..4ecb56e 100644
--- a/mate/Makefile.am
+++ b/mate/Makefile.am
@@ -1,8 +1,25 @@
+NULL =
+
themedir = $(datadir)/icons/mate
-SUBDIRS = scalable \
- scalable-up-to-32
+DIMENSIONS = \
+ 16x16 \
+ 22x22 \
+ 24x24 \
+ 32x32 \
+ 48x48 \
+ 256x256 \
+ $(NULL)
+
+SUBDIRS = \
+ $(DIMENSIONS) \
+ scalable \
+ scalable-up-to-32 \
+ $(NULL)
-DIST_SUBDIRS = scalable \
- scalable-up-to-32
+DIST_SUBDIRS = \
+ $(DIMENSIONS) \
+ scalable \
+ scalable-up-to-32 \
+ $(NULL)