Added window icons; fixes issue #125

This commit is contained in:
Bert Münnich
2014-01-15 22:40:34 +01:00
parent 03b1d7cf7a
commit 135c4f9263
10 changed files with 320 additions and 0 deletions

12
icon/Makefile Normal file
View File

@ -0,0 +1,12 @@
PREFIX = /usr/local
ICONS = 16x16.png 32x32.png 48x48.png 64x64.png 128x128.png
all:
install:
for f in $(ICONS); do \
dir="$(DESTDIR)$(PREFIX)/share/icons/hicolor/$${f%.png}/apps"; \
mkdir -p "$$dir"; \
cp "$$f" "$$dir/sxiv.png"; \
chmod 644 "$$dir/sxiv.png"; \
done