[Xfce4-commits] [panel-plugins/xfce4-eyes-plugin] 12/16: Add more icon sizes
noreply at xfce.org
noreply at xfce.org
Sun Jun 5 17:47:42 CEST 2016
This is an automated email from the git hooks/post-receive script.
andre pushed a commit to branch master
in repository panel-plugins/xfce4-eyes-plugin.
commit 72384731861daf2acf0e311cfcf8b3122dd3a616
Author: Andre Miranda <andre42m at gmail.com>
Date: Thu May 26 00:43:57 2016 -0300
Add more icon sizes
---
configure.ac.in | 5 +++++
icons/16x16/Makefile.am | 8 ++++++++
icons/16x16/xfce4-eyes.png | Bin 0 -> 726 bytes
icons/22x22/Makefile.am | 8 ++++++++
icons/22x22/xfce4-eyes.png | Bin 0 -> 1237 bytes
icons/24x24/Makefile.am | 8 ++++++++
icons/24x24/xfce4-eyes.png | Bin 0 -> 1206 bytes
icons/32x32/Makefile.am | 8 ++++++++
icons/32x32/xfce4-eyes.png | Bin 0 -> 1960 bytes
icons/36x36/Makefile.am | 8 ++++++++
icons/36x36/xfce4-eyes.png | Bin 0 -> 2315 bytes
icons/Makefile.am | 7 ++++++-
12 files changed, 51 insertions(+), 1 deletion(-)
diff --git a/configure.ac.in b/configure.ac.in
index 4f7be09..48b9f86 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -72,6 +72,11 @@ po/Makefile.in
panel-plugin/Makefile
icons/Makefile
icons/48x48/Makefile
+icons/36x36/Makefile
+icons/32x32/Makefile
+icons/24x24/Makefile
+icons/22x22/Makefile
+icons/16x16/Makefile
themes/Makefile
themes/Bizarre/Makefile
themes/Bloodshot/Makefile
diff --git a/icons/16x16/Makefile.am b/icons/16x16/Makefile.am
new file mode 100644
index 0000000..0bc43fe
--- /dev/null
+++ b/icons/16x16/Makefile.am
@@ -0,0 +1,8 @@
+iconsdir = $(datadir)/icons/hicolor/16x16/apps
+icons_DATA = \
+ xfce4-eyes.png
+
+EXTRA_DIST = \
+ $(icons_DATA)
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/16x16/xfce4-eyes.png b/icons/16x16/xfce4-eyes.png
new file mode 100644
index 0000000..7d30a62
Binary files /dev/null and b/icons/16x16/xfce4-eyes.png differ
diff --git a/icons/22x22/Makefile.am b/icons/22x22/Makefile.am
new file mode 100644
index 0000000..e6871f8
--- /dev/null
+++ b/icons/22x22/Makefile.am
@@ -0,0 +1,8 @@
+iconsdir = $(datadir)/icons/hicolor/22x22/apps
+icons_DATA = \
+ xfce4-eyes.png
+
+EXTRA_DIST = \
+ $(icons_DATA)
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/22x22/xfce4-eyes.png b/icons/22x22/xfce4-eyes.png
new file mode 100644
index 0000000..662dea4
Binary files /dev/null and b/icons/22x22/xfce4-eyes.png differ
diff --git a/icons/24x24/Makefile.am b/icons/24x24/Makefile.am
new file mode 100644
index 0000000..dcc68b4
--- /dev/null
+++ b/icons/24x24/Makefile.am
@@ -0,0 +1,8 @@
+iconsdir = $(datadir)/icons/hicolor/24x24/apps
+icons_DATA = \
+ xfce4-eyes.png
+
+EXTRA_DIST = \
+ $(icons_DATA)
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/24x24/xfce4-eyes.png b/icons/24x24/xfce4-eyes.png
new file mode 100644
index 0000000..d35ae16
Binary files /dev/null and b/icons/24x24/xfce4-eyes.png differ
diff --git a/icons/32x32/Makefile.am b/icons/32x32/Makefile.am
new file mode 100644
index 0000000..431de6a
--- /dev/null
+++ b/icons/32x32/Makefile.am
@@ -0,0 +1,8 @@
+iconsdir = $(datadir)/icons/hicolor/32x32/apps
+icons_DATA = \
+ xfce4-eyes.png
+
+EXTRA_DIST = \
+ $(icons_DATA)
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/32x32/xfce4-eyes.png b/icons/32x32/xfce4-eyes.png
new file mode 100644
index 0000000..598d8da
Binary files /dev/null and b/icons/32x32/xfce4-eyes.png differ
diff --git a/icons/36x36/Makefile.am b/icons/36x36/Makefile.am
new file mode 100644
index 0000000..545bd42
--- /dev/null
+++ b/icons/36x36/Makefile.am
@@ -0,0 +1,8 @@
+iconsdir = $(datadir)/icons/hicolor/36x36/apps
+icons_DATA = \
+ xfce4-eyes.png
+
+EXTRA_DIST = \
+ $(icons_DATA)
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/36x36/xfce4-eyes.png b/icons/36x36/xfce4-eyes.png
new file mode 100644
index 0000000..088719a
Binary files /dev/null and b/icons/36x36/xfce4-eyes.png differ
diff --git a/icons/Makefile.am b/icons/Makefile.am
index 520b1c6..571cfe4 100644
--- a/icons/Makefile.am
+++ b/icons/Makefile.am
@@ -1,5 +1,10 @@
SUBDIRS = \
- 48x48
+ 48x48 \
+ 36x36 \
+ 32x32 \
+ 24x24 \
+ 22x22 \
+ 16x16
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list