diff options
author | Horst3180 | 2016-08-31 00:02:23 +0200 |
---|---|---|
committer | Horst3180 | 2016-08-31 00:02:27 +0200 |
commit | e6ec849cfe83d41a6597b26f9979587566eeefd2 (patch) | |
tree | 76ed144b82f652eeb8dcf7466b42de3b18061211 /common/Makefile.am | |
parent | 06b091100947a17f29b82f92bf0fa38735eaabac (diff) | |
download | solarc-theme-e6ec849cfe83d41a6597b26f9979587566eeefd2.tar.gz solarc-theme-e6ec849cfe83d41a6597b26f9979587566eeefd2.tar.xz solarc-theme-e6ec849cfe83d41a6597b26f9979587566eeefd2.zip |
refactor xfwm theme
-now png based
-add borders to light theme
-add thicker bottom border for easier resizing
Diffstat (limited to 'common/Makefile.am')
-rw-r--r-- | common/Makefile.am | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index c603f5c..8e496fb 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -250,15 +250,27 @@ endif # ENABLE_UNITY if ENABLE_XFWM if ENABLE_LIGHT - cp -R $(srcdir)/xfwm4 $(ithemedir) + $(MKDIR_P) $(ithemedir)/xfwm4 + + cd $(srcdir)/xfwm4 && \ + cp -R assets/*.png $(ithemedir)/xfwm4 && \ + cp themerc $(ithemedir)/xfwm4/themerc endif # ENABLE_LIGHT if ENABLE_DARKER - cp -R $(srcdir)/xfwm4-dark $(ithemedarkerdir)/xfwm4 + $(MKDIR_P) $(ithemedarkerdir)/xfwm4 + + cd $(srcdir)/xfwm4 && \ + cp -R assets-dark/*.png $(ithemedarkerdir)/xfwm4 && \ + cp themerc-dark $(ithemedarkerdir)/xfwm4/themerc endif # ENABLE_DARKER if ENABLE_DARK - cp -R $(srcdir)/xfwm4-dark $(ithemedarkdir)/xfwm4 + $(MKDIR_P) $(ithemedarkdir)/xfwm4 + + cd $(srcdir)/xfwm4 && \ + cp -R assets-dark/*.png $(ithemedarkdir)/xfwm4 && \ + cp themerc-dark $(ithemedarkdir)/xfwm4/themerc endif # ENABLE_DARK endif # ENABLE_XFWM @@ -283,7 +295,6 @@ EXTRA_DIST = $(srcdir)/cinnamon \ $(srcdir)/metacity-1 \ $(srcdir)/unity \ $(srcdir)/xfwm4 \ - $(srcdir)/xfwm4-dark \ $(srcdir)/index.theme \ $(srcdir)/index.theme-darker \ $(srcdir)/index.theme-dark |