From d425d550c5c9bc546fce9c451229caf08665264c Mon Sep 17 00:00:00 2001 From: rbuj Date: Thu, 26 Mar 2020 15:17:25 +0100 Subject: Add 96x96 icons --- configure.ac | 1 + icons/96x96/Makefile.am | 34 ++++++++++++++++++++++++++ icons/96x96/mate-panel-clock.png | Bin 0 -> 11497 bytes icons/96x96/mate-panel-drawer.png | Bin 0 -> 3244 bytes icons/96x96/mate-panel-fish.png | Bin 0 -> 7754 bytes icons/96x96/mate-panel-force-quit.png | Bin 0 -> 5376 bytes icons/96x96/mate-panel-launcher.png | Bin 0 -> 5228 bytes icons/96x96/mate-panel-notification-area.png | Bin 0 -> 5886 bytes icons/96x96/mate-panel-separator.png | Bin 0 -> 417 bytes icons/96x96/mate-panel-window-list.png | Bin 0 -> 2981 bytes icons/96x96/mate-panel-window-menu.png | Bin 0 -> 2159 bytes icons/96x96/mate-panel-workspace-switcher.png | Bin 0 -> 1970 bytes icons/96x96/mate-panel.png | Bin 0 -> 3516 bytes icons/Makefile.am | 2 +- 14 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 icons/96x96/Makefile.am create mode 100644 icons/96x96/mate-panel-clock.png create mode 100644 icons/96x96/mate-panel-drawer.png create mode 100644 icons/96x96/mate-panel-fish.png create mode 100644 icons/96x96/mate-panel-force-quit.png create mode 100644 icons/96x96/mate-panel-launcher.png create mode 100644 icons/96x96/mate-panel-notification-area.png create mode 100644 icons/96x96/mate-panel-separator.png create mode 100644 icons/96x96/mate-panel-window-list.png create mode 100644 icons/96x96/mate-panel-window-menu.png create mode 100644 icons/96x96/mate-panel-workspace-switcher.png create mode 100644 icons/96x96/mate-panel.png diff --git a/configure.ac b/configure.ac index fec5c628..3102e66c 100644 --- a/configure.ac +++ b/configure.ac @@ -309,6 +309,7 @@ icons/24x24/Makefile icons/32x32/Makefile icons/48x48/Makefile icons/64x64/Makefile +icons/96x96/Makefile icons/256x256/Makefile icons/scalable/Makefile mate-panel/Makefile diff --git a/icons/96x96/Makefile.am b/icons/96x96/Makefile.am new file mode 100644 index 00000000..32fa3e8a --- /dev/null +++ b/icons/96x96/Makefile.am @@ -0,0 +1,34 @@ +size = 96x96 + +iconsdir = $(datadir)/icons/hicolor/$(size)/apps + +icons_DATA = \ + mate-panel-clock.png \ + mate-panel-drawer.png \ + mate-panel-fish.png \ + mate-panel-force-quit.png \ + mate-panel-launcher.png \ + mate-panel-notification-area.png \ + mate-panel.png \ + mate-panel-separator.png \ + mate-panel-window-list.png \ + mate-panel-window-menu.png \ + mate-panel-workspace-switcher.png + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +install-data-hook: update-icon-cache +uninstall-hook: update-icon-cache +update-icon-cache: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + +EXTRA_DIST = \ + $(icons_DATA) + +-include $(top_srcdir)/git.mk diff --git a/icons/96x96/mate-panel-clock.png b/icons/96x96/mate-panel-clock.png new file mode 100644 index 00000000..93f65f65 Binary files /dev/null and b/icons/96x96/mate-panel-clock.png differ diff --git a/icons/96x96/mate-panel-drawer.png b/icons/96x96/mate-panel-drawer.png new file mode 100644 index 00000000..75849d83 Binary files /dev/null and b/icons/96x96/mate-panel-drawer.png differ diff --git a/icons/96x96/mate-panel-fish.png b/icons/96x96/mate-panel-fish.png new file mode 100644 index 00000000..aed8af34 Binary files /dev/null and b/icons/96x96/mate-panel-fish.png differ diff --git a/icons/96x96/mate-panel-force-quit.png b/icons/96x96/mate-panel-force-quit.png new file mode 100644 index 00000000..3872a7c1 Binary files /dev/null and b/icons/96x96/mate-panel-force-quit.png differ diff --git a/icons/96x96/mate-panel-launcher.png b/icons/96x96/mate-panel-launcher.png new file mode 100644 index 00000000..ca407370 Binary files /dev/null and b/icons/96x96/mate-panel-launcher.png differ diff --git a/icons/96x96/mate-panel-notification-area.png b/icons/96x96/mate-panel-notification-area.png new file mode 100644 index 00000000..6a4eceec Binary files /dev/null and b/icons/96x96/mate-panel-notification-area.png differ diff --git a/icons/96x96/mate-panel-separator.png b/icons/96x96/mate-panel-separator.png new file mode 100644 index 00000000..a658743b Binary files /dev/null and b/icons/96x96/mate-panel-separator.png differ diff --git a/icons/96x96/mate-panel-window-list.png b/icons/96x96/mate-panel-window-list.png new file mode 100644 index 00000000..304ff048 Binary files /dev/null and b/icons/96x96/mate-panel-window-list.png differ diff --git a/icons/96x96/mate-panel-window-menu.png b/icons/96x96/mate-panel-window-menu.png new file mode 100644 index 00000000..7a1bedb9 Binary files /dev/null and b/icons/96x96/mate-panel-window-menu.png differ diff --git a/icons/96x96/mate-panel-workspace-switcher.png b/icons/96x96/mate-panel-workspace-switcher.png new file mode 100644 index 00000000..ffad4520 Binary files /dev/null and b/icons/96x96/mate-panel-workspace-switcher.png differ diff --git a/icons/96x96/mate-panel.png b/icons/96x96/mate-panel.png new file mode 100644 index 00000000..df154ca3 Binary files /dev/null and b/icons/96x96/mate-panel.png differ diff --git a/icons/Makefile.am b/icons/Makefile.am index 8e5ab1ac..bdddd682 100644 --- a/icons/Makefile.am +++ b/icons/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS = 16x16 22x22 24x24 32x32 48x48 64x64 256x256 scalable +SUBDIRS = 16x16 22x22 24x24 32x32 48x48 64x64 96x96 256x256 scalable -include $(top_srcdir)/git.mk -- cgit v1.2.1