diff options
author | Patrick Griffis | 2017-05-10 17:38:54 -0400 |
---|---|---|
committer | Patrick Griffis | 2017-05-10 18:13:52 -0400 |
commit | 7b1d4f3fb9635c21abc4221c008cfa9849fe53ff (patch) | |
tree | a8f689ce207e6719089f361eee39ef266d96035d /common | |
parent | 766ae1a386134f122bab4a0456af802e7a5b66bd (diff) | |
download | solarc-theme-7b1d4f3fb9635c21abc4221c008cfa9849fe53ff.tar.gz solarc-theme-7b1d4f3fb9635c21abc4221c008cfa9849fe53ff.tar.xz solarc-theme-7b1d4f3fb9635c21abc4221c008cfa9849fe53ff.zip |
Append solid suffix to non-transparent variant
This allows distributions to easily pacakge both without conflicts.
This will also help with Flatpak being able to match the host theme.
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 0421c5d..58f54d8 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -1,6 +1,12 @@ +if !ENABLE_TRANSPARENCY +themedir = $(datadir)/themes/Arc-solid +themedarkerdir = $(datadir)/themes/Arc-Darker-solid +themedarkdir = $(datadir)/themes/Arc-Dark-solid +else themedir = $(datadir)/themes/Arc themedarkerdir = $(datadir)/themes/Arc-Darker themedarkdir = $(datadir)/themes/Arc-Dark +endif ithemedir = $(DESTDIR)$(themedir) ithemedarkerdir = $(DESTDIR)$(themedarkerdir) |