aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMax Christian Pohle2015-08-07 15:17:37 +0200
committerMax Christian Pohle2015-08-07 15:17:37 +0200
commitbc2a62d82bb8aed3136f254c68776ad342060977 (patch)
treeaaeced23afa4878eeccd3ec4fc89da31e9e39c76 /Makefile
parentf6d04253df0370c2c01a6dcd273a6297595045a6 (diff)
downloadicons-bc2a62d82bb8aed3136f254c68776ad342060977.tar.bz2
icons-bc2a62d82bb8aed3136f254c68776ad342060977.zip
fiddled around with the theme file, added some symbolic links, because some symbols were missing under xfce and replaced the audio-volume-* icons with a beautiful vu meter
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2055323..78d9192 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,15 @@
1all: preview.png 1all: clean
2 make generate
3
4generate: preview.png versions update-cache
2 5
3preview.png: 6preview.png:
4 $(shell find "scalable/" -type f -name "*.png" -not -path ".git/*" | 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/*" | sort | feh -m -y 96 -E 96 -s -p -b trans -O preview.png -f-)
5 8
6update: 9versions:
10 find scalable/ -name '*.png' -exec ./generate.sh '{}' \;
11
12update-cache:
7 gtk-update-icon-cache `pwd` 13 gtk-update-icon-cache `pwd`
8 14
9clean: 15clean:
..