summaryrefslogtreecommitdiff
path: root/data/icons
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2024-04-16 09:03:23 -0400
committerGitHub <[email protected]>2024-04-16 15:03:23 +0200
commitc5b2dfc82baeaa998b414fc90efcc15f11f17925 (patch)
tree075a449a729cdfb16fef272063c395dd673f0e13 /data/icons
parent3c3aa9cbb18e3a10d4aa95e258d8c415750f1ff3 (diff)
downloadatril-c5b2dfc82baeaa998b414fc90efcc15f11f17925.tar.bz2
atril-c5b2dfc82baeaa998b414fc90efcc15f11f17925.tar.xz
icons: Include higher resolution icons (#608)
This only includes higher resolution icons to be loaded automatically by the window manager icon cache, resulting in sharper icons in the alt-tab and wnck views.
Diffstat (limited to 'data/icons')
-rw-r--r--data/icons/128x128/Makefile.am4
-rw-r--r--data/icons/128x128/apps/Makefile.am16
-rw-r--r--data/icons/128x128/apps/atril.pngbin0 -> 5590 bytes
-rw-r--r--data/icons/64x64/Makefile.am4
-rw-r--r--data/icons/64x64/apps/Makefile.am16
-rw-r--r--data/icons/64x64/apps/atril.pngbin0 -> 2853 bytes
-rw-r--r--data/icons/Makefile.am2
7 files changed, 41 insertions, 1 deletions
diff --git a/data/icons/128x128/Makefile.am b/data/icons/128x128/Makefile.am
new file mode 100644
index 00000000..237e2099
--- /dev/null
+++ b/data/icons/128x128/Makefile.am
@@ -0,0 +1,4 @@
+SUBDIRS = apps
+
+
+-include $(top_srcdir)/git.mk
diff --git a/data/icons/128x128/apps/Makefile.am b/data/icons/128x128/apps/Makefile.am
new file mode 100644
index 00000000..47dada0a
--- /dev/null
+++ b/data/icons/128x128/apps/Makefile.am
@@ -0,0 +1,16 @@
+themedir = $(datadir)/icons/hicolor
+size = 128x128
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+ atril.png
+
+noinst_DATA =
+
+EXTRA_DIST = \
+ $(icons_DATA) \
+ $(noinst_DATA)
+
+-include $(top_srcdir)/git.mk
diff --git a/data/icons/128x128/apps/atril.png b/data/icons/128x128/apps/atril.png
new file mode 100644
index 00000000..5deac6ae
--- /dev/null
+++ b/data/icons/128x128/apps/atril.png
Binary files differ
diff --git a/data/icons/64x64/Makefile.am b/data/icons/64x64/Makefile.am
new file mode 100644
index 00000000..237e2099
--- /dev/null
+++ b/data/icons/64x64/Makefile.am
@@ -0,0 +1,4 @@
+SUBDIRS = apps
+
+
+-include $(top_srcdir)/git.mk
diff --git a/data/icons/64x64/apps/Makefile.am b/data/icons/64x64/apps/Makefile.am
new file mode 100644
index 00000000..6aa2c49e
--- /dev/null
+++ b/data/icons/64x64/apps/Makefile.am
@@ -0,0 +1,16 @@
+themedir = $(datadir)/icons/hicolor
+size = 64x64
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+ atril.png
+
+noinst_DATA =
+
+EXTRA_DIST = \
+ $(icons_DATA) \
+ $(noinst_DATA)
+
+-include $(top_srcdir)/git.mk
diff --git a/data/icons/64x64/apps/atril.png b/data/icons/64x64/apps/atril.png
new file mode 100644
index 00000000..57091d6e
--- /dev/null
+++ b/data/icons/64x64/apps/atril.png
Binary files differ
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
index 6101c565..8dcf5e07 100644
--- a/data/icons/Makefile.am
+++ b/data/icons/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = 16x16 22x22 24x24 32x32 48x48 scalable
+SUBDIRS = 16x16 22x22 24x24 32x32 48x48 64x64 128x128 scalable
-include $(top_srcdir)/git.mk