From a82e8d1d44d42dd829dda6db1b898b1f8bd9eb8f Mon Sep 17 00:00:00 2001 From: David Mohammed Date: Sun, 13 May 2018 00:03:26 +0100 Subject: [PATCH] Add openbox compilation options --- common/Makefile.am | 16 ++++++++++++++++ configure.ac | 1 + 2 files changed, 17 insertions(+) diff --git a/common/Makefile.am b/common/Makefile.am index 2652dc3..828cc55 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -268,6 +268,22 @@ endif # ENABLE_DARK endif # ENABLE_METACITY +if ENABLE_OPENBOX + +if ENABLE_LIGHT + cp -R $(srcdir)/openbox/Arc/* $(ithemedir) +endif # ENABLE_LIGHT + +if ENABLE_DARKER + cp -R $(srcdir)/openbox/Arc-Darker/* $(ithemedarkerdir) +endif # ENABLE_DARKER + +if ENABLE_DARK + cp -R $(srcdir)/openbox/Arc-Dark/* $(ithemedarkdir) +endif # ENABLE_DARK + +endif # ENABLE_OPENBOX + if ENABLE_UNITY diff --git a/configure.ac b/configure.ac index 8c539cb..db94181 100644 --- a/configure.ac +++ b/configure.ac @@ -24,6 +24,7 @@ ARC_ENABLE([UNITY], [unity], [Unity], [disable]) ARC_ENABLE([XFWM], [xfwm], [XFWM], [disable]) ARC_ENABLE([TRANSPARENCY], [transparency], [transparency], [disable]) ARC_ENABLE([PLANK], [plank], [Plank theme], [disable]) +ARC_ENABLE([OPENBOX], [openbox], [Openbox], [disable]) AS_IF([test "x$ENABLE_GNOME_SHELL$ENABLE_GTK3" != xnono], [ARC_GNOME])