diff options
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | Makefile | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/.gitmodules b/.gitmodules index 9284999..93974ac 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "zuki-themes"] - path = zuki-themes - url = https://github.com/lassekongo83/zuki-themes.git [submodule "numix-themes"] path = numix-themes url = https://github.com/shimmerproject/Numix @@ -38,7 +38,8 @@ Shiki-%: @echo "Generating $@ from $(BASE)..." cp -r $(BASE) $@ sed -i $@/gtk-2.0/gtkrc $@/gtk-3.0/gtk.css \ - -e 's/#d64937/#$($@_selected)/g' + -e 's/#d64937/#$($@_selected)/g' \ + -e 's/#2d2d2d/#212121/g' generate: $(foreach COLOR,$(COLORS),make Shiki-$(COLOR);) @@ -52,4 +53,4 @@ install: 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/Shiki-$(COLOR);) + $(foreach COLOR,$(COLORS),cp -r Shiki-$(COLOR) $(DESTDIR)$(PREFIX)/share/themes;) |