aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2015-09-07 00:12:54 +0200
committerMax Christian Pohle2015-09-07 00:12:54 +0200
commit8554cc81ae57daed4a975d3d864b995fd0e162ac (patch)
treef991179cc449a1f43b97f97d166bee504a0e8274
parent29177acc95d284971665082d95b1476f4896996a (diff)
downloadicons-8554cc81ae57daed4a975d3d864b995fd0e162ac.tar.bz2
icons-8554cc81ae57daed4a975d3d864b995fd0e162ac.zip
ported icon theme preview from feh to imagemagicks montage
-rw-r--r--Makefile3
-rw-r--r--doc/img/actions.jpgbin0 -> 50930 bytes
-rw-r--r--doc/img/apps.jpgbin0 -> 55962 bytes
-rw-r--r--doc/img/categories.jpgbin0 -> 12688 bytes
-rw-r--r--doc/img/devices.jpgbin0 -> 29607 bytes
-rw-r--r--doc/img/emblems.jpgbin0 -> 15551 bytes
-rw-r--r--doc/img/places.jpgbin0 -> 32747 bytes
-rw-r--r--doc/img/status.jpgbin0 -> 24971 bytes
-rw-r--r--doc/readme.md22
9 files changed, 24 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a55858e..ac4cf99 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,8 @@ all: clean
4generate: preview.png versions update-cache 4generate: preview.png versions update-cache
5 5
6preview.png: 6preview.png:
7 $(shell find "scalable/" -type f -name "*.png" -not -path ".git/*" -not -path 'scalable/animations/*' -not -path 'scalable/mimetypes/*' | sort | feh -m -y 96 -E 96 -s -p -b trans -O preview.png -f-) 7 #$(shell find "scalable/" -type f -name "*.png" -not -path ".git/*" -not -path 'scalable/animations/*' -not -path 'scalable/mimetypes/*' | sort | feh -m -y 96 -E 96 -s -p -b trans -O preview.png -f-)
8 $(shell for path in $(ls -d scalable/*/); do montage -label '\n%t' $(find $path -type f) -tile 5 -background white -geometry 96x96+24+24 doc/img/$(echo $path | cut -d "/" -f2).jpg; done)
8 9
9preview_mimetypes.png: 10preview_mimetypes.png:
10 $(shell find "scalable/mimetypes" -type f -name "*.png" | sort | feh -m -y 256 -E 256 -W 8192 -s -p -b trans -O preview_mimetypes.png -f-) 11 $(shell find "scalable/mimetypes" -type f -name "*.png" | sort | feh -m -y 256 -E 256 -W 8192 -s -p -b trans -O preview_mimetypes.png -f-)
diff --git a/doc/img/actions.jpg b/doc/img/actions.jpg
new file mode 100644
index 0000000..9aec71f
--- /dev/null
+++ b/doc/img/actions.jpg
Binary files differ
diff --git a/doc/img/apps.jpg b/doc/img/apps.jpg
new file mode 100644
index 0000000..1c57a3c
--- /dev/null
+++ b/doc/img/apps.jpg
Binary files differ
diff --git a/doc/img/categories.jpg b/doc/img/categories.jpg
new file mode 100644
index 0000000..51dd56a
--- /dev/null
+++ b/doc/img/categories.jpg
Binary files differ
diff --git a/doc/img/devices.jpg b/doc/img/devices.jpg
new file mode 100644
index 0000000..8c845db
--- /dev/null
+++ b/doc/img/devices.jpg
Binary files differ
diff --git a/doc/img/emblems.jpg b/doc/img/emblems.jpg
new file mode 100644
index 0000000..f0d4673
--- /dev/null
+++ b/doc/img/emblems.jpg
Binary files differ
diff --git a/doc/img/places.jpg b/doc/img/places.jpg
new file mode 100644
index 0000000..76f6946
--- /dev/null
+++ b/doc/img/places.jpg
Binary files differ
diff --git a/doc/img/status.jpg b/doc/img/status.jpg
new file mode 100644
index 0000000..b752b6f
--- /dev/null
+++ b/doc/img/status.jpg
Binary files differ
diff --git a/doc/readme.md b/doc/readme.md
new file mode 100644
index 0000000..e43f93b
--- /dev/null
+++ b/doc/readme.md
@@ -0,0 +1,22 @@
1<h1>Icon theme</h1>
2
3<h2>places</h2>
4<img src="/icons/plain/doc/img/places.png" />
5
6<h2>devices</h2>
7<img src="/icons/plain/doc/img/devices.png" />
8
9<h2>actions</h2>
10<img src="/icons/plain/doc/img/actions.png" />
11
12<h2>status</h2>
13<img src="/icons/plain/doc/img/status.png" />
14
15<h2>emblems</h2>
16<img src="/icons/plain/doc/img/emblems.png" />
17
18<h2>categories</h2>
19<img src="/icons/plain/doc/img/categories.png" />
20
21<h2>apps</h2>
22<img src="/icons/plain/doc/img/apps.png" />
..