1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright (c) 2014-2015 Kylie McClain <somasis@exherbo.org>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
DESTDIR ?= /
PREFIX ?= /usr
BASE = numix-themes
COLORS = Brave Human Illustrious Noble Wine Wise
Shiki-Brave_selected = 729fcf
Shiki-Human_selected = faa546
Shiki-Illustrious_selected = f9a1ac
Shiki-Noble_selected = ad7fa8
Shiki-Wine_selected = df5757
Shiki-Wise_selected = 97bf60
# xfwm4 is provided by shiki-colors-xfwm, metacity/openbox are not themed
# xfce-notify is not yet themed as well
all: prepare generate install
help:
@echo "make targets:"
@echo " all Prepare, generate, and install theme"
@echo " clean Delete generated themes and base ($(BASE))"
@echo " prepare Run pre-generation modifications on base theme"
@echo " generate Generate all colors specified in the Makefile"
@echo " Shiki-<color> Generate Shiki-<color>"
@echo " install Install themes to $(DESTDIR)$(PREFIX)/share/{plank/,}themes"
@echo
@echo "Base theme: $(BASE)"
@echo "Default themes to generate: $(foreach COLOR,$(COLORS),Shiki-$(COLOR))"
@echo
@echo "Notes:"
@echo " If you do not want to run \`git submodules update\` during the prepare"
@echo " phase, set \${no_git}; ex. \`no_git=true make prepare\`"
prepare:
[[ "$(no_git)" ]] || git submodule update
cd $(BASE) && rm -rf xfwm4 metacity-1 openbox-3 xfce-notify-4.0 index.theme
Shiki-%:
@echo "Generating $@ from $(BASE)..."
cp -r $(BASE) $@
sed -i $@/gtk-2.0/gtkrc $@/gtk-3.0/*.css $@/gtk-3.0/assets/*.svg \
$@/gtk-3.0/apps/*.css \
-e 's/#d64937/#$($@_selected)/g' \
-e 's/#2d2d2d/#212121/g'
generate:
$(foreach COLOR,$(COLORS),make Shiki-$(COLOR);)
clean:
rm -rf $(BASE)
$(foreach COLOR,$(COLORS),rm -rf Shiki-$(COLOR)/;)
install:
mkdir -p $(DESTDIR)$(PREFIX)/share/themes
mkdir -p $(DESTDIR)$(PREFIX)/share/plank/themes
cp -r Shiki-Colors-* $(DESTDIR)$(PREFIX)/share/themes
cp -r plank/* $(DESTDIR)$(PREFIX)/share/plank/themes
$(foreach COLOR,$(COLORS),cp -r Shiki-$(COLOR) $(DESTDIR)$(PREFIX)/share/themes;)
|