diff --git a/configure b/configure
index 21d1e8940639fd93227a1b7f36380641f4691b6c..d79d6a1402c6d1664af0f549eaecf4b40ee6c2ea 100755
--- a/configure
+++ b/configure
@@ -4892,7 +4892,7 @@ echo "$as_me: error: Library requirements (glib-2.0 >= $GLIB_REQUIRED_VERSION gt
   fi
 
 
-ac_config_files="$ac_config_files xfwm4.spec Makefile src/Makefile defaults/Makefile themes/Makefile themes/agua/Makefile themes/coldsteel/Makefile themes/crux/Makefile themes/cruxish/Makefile themes/eazel-blue/Makefile themes/gorilla/Makefile themes/gtk/Makefile themes/iceg/Makefile themes/kde/Makefile themes/kindaker/Makefile themes/linea/Makefile themes/mofit/Makefile themes/next/Makefile themes/oroborus/Makefile themes/platinum/Makefile themes/quinx/Makefile themes/r9x/Makefile themes/redmond/Makefile themes/redmondxp/Makefile themes/retro/Makefile themes/slick/Makefile themes/slimline/Makefile themes/trench/Makefile themes/xfce/Makefile"
+ac_config_files="$ac_config_files xfwm4.spec Makefile src/Makefile defaults/Makefile themes/Makefile themes/agua/Makefile themes/coldsteel/Makefile themes/crux/Makefile themes/cruxish/Makefile themes/eazel-blue/Makefile themes/g2/Makefile themes/gorilla/Makefile themes/gtk/Makefile themes/iceg/Makefile themes/kde/Makefile themes/kindaker/Makefile themes/linea/Makefile themes/mofit/Makefile themes/next/Makefile themes/oroborus/Makefile themes/platinum/Makefile themes/quinx/Makefile themes/r9x/Makefile themes/redmond/Makefile themes/redmondxp/Makefile themes/retro/Makefile themes/slick/Makefile themes/slimline/Makefile themes/trench/Makefile themes/xfce/Makefile"
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
 # tests run on this system so they can be shared between configure
@@ -5391,6 +5391,7 @@ do
   "themes/crux/Makefile" ) CONFIG_FILES="$CONFIG_FILES themes/crux/Makefile" ;;
   "themes/cruxish/Makefile" ) CONFIG_FILES="$CONFIG_FILES themes/cruxish/Makefile" ;;
   "themes/eazel-blue/Makefile" ) CONFIG_FILES="$CONFIG_FILES themes/eazel-blue/Makefile" ;;
+  "themes/g2/Makefile" ) CONFIG_FILES="$CONFIG_FILES themes/g2/Makefile" ;;
   "themes/gorilla/Makefile" ) CONFIG_FILES="$CONFIG_FILES themes/gorilla/Makefile" ;;
   "themes/gtk/Makefile" ) CONFIG_FILES="$CONFIG_FILES themes/gtk/Makefile" ;;
   "themes/iceg/Makefile" ) CONFIG_FILES="$CONFIG_FILES themes/iceg/Makefile" ;;
diff --git a/configure.in b/configure.in
index af0adef263600e3385fd2aa966b77cd28e512f04..6bd961264af2e3fd75ba98fa9d882c99327e232a 100644
--- a/configure.in
+++ b/configure.in
@@ -46,6 +46,7 @@ themes/coldsteel/Makefile
 themes/crux/Makefile
 themes/cruxish/Makefile
 themes/eazel-blue/Makefile
+themes/g2/Makefile
 themes/gorilla/Makefile
 themes/gtk/Makefile
 themes/iceg/Makefile
diff --git a/themes/Makefile.am b/themes/Makefile.am
index 8f211118883a9e913ec502b1b63d1071ee6cb18e..2f99370bcb70c82cdf029259282e168ccc70844a 100644
--- a/themes/Makefile.am
+++ b/themes/Makefile.am
@@ -4,6 +4,7 @@ coldsteel \
 crux \
 cruxish \
 eazel-blue \
+g2 \
 gorilla \
 gtk \
 iceg \
diff --git a/themes/Makefile.in b/themes/Makefile.in
index 1efcd1684c78d485e6b9818b41ad17d700bf31d9..29aac0c577e89329c872941cee7668ff149963ec 100644
--- a/themes/Makefile.in
+++ b/themes/Makefile.in
@@ -85,6 +85,7 @@ coldsteel \
 crux \
 cruxish \
 eazel-blue \
+g2 \
 gorilla \
 gtk \
 iceg \
diff --git a/themes/g2/Makefile.am b/themes/g2/Makefile.am
new file mode 100644
index 0000000000000000000000000000000000000000..3f437d02329f1878e961f2677d1f78e1869472f4
--- /dev/null
+++ b/themes/g2/Makefile.am
@@ -0,0 +1,46 @@
+themedir = $(pkgdatadir)/themes/g2
+theme_DATA = README \
+	bottom-active.xpm \
+	bottom-inactive.xpm \
+	bottom-left-active.xpm \
+	bottom-left-inactive.xpm \
+	bottom-right-active.xpm \
+	bottom-right-inactive.xpm \
+	close-active.xpm \
+	close-inactive.xpm \
+	close-pressed.xpm \
+	hide-active.xpm \
+	hide-inactive.xpm \
+	hide-pressed.xpm \
+	left-active.xpm \
+	left-inactive.xpm \
+	maximize-active.xpm \
+	maximize-inactive.xpm \
+	maximize-pressed.xpm \
+	menu-active.xpm \
+	menu-inactive.xpm \
+	menu-pressed.xpm \
+	right-active.xpm \
+	right-inactive.xpm \
+	shade-active.xpm \
+	shade-inactive.xpm \
+	shade-pressed.xpm \
+	stick-active.xpm \
+	stick-inactive.xpm \
+	stick-pressed.xpm \
+	themerc \
+	title-1-active.xpm \
+	title-1-inactive.xpm \
+	title-2-active.xpm \
+	title-2-inactive.xpm \
+	title-3-active.xpm \
+	title-3-inactive.xpm \
+	title-4-active.xpm \
+	title-4-inactive.xpm \
+	title-5-active.xpm \
+	title-5-inactive.xpm \
+	top-left-active.xpm \
+	top-left-inactive.xpm \
+	top-right-active.xpm \
+	top-right-inactive.xpm
+EXTRA_DIST = $(theme_DATA)
diff --git a/themes/g2/Makefile.in b/themes/g2/Makefile.in
new file mode 100644
index 0000000000000000000000000000000000000000..ff612805f4432f5bc0d83531401acf11cbdd5682
--- /dev/null
+++ b/themes/g2/Makefile.in
@@ -0,0 +1,271 @@
+# Makefile.in generated by automake 1.6.2 from Makefile.am.
+# @configure_input@
+
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+# Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ../..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = @program_transform_name@
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+
+EXEEXT = @EXEEXT@
+OBJEXT = @OBJEXT@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+AMTAR = @AMTAR@
+AWK = @AWK@
+CC = @CC@
+DEPDIR = @DEPDIR@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+PACKAGE = @PACKAGE@
+PKG_CONFIG = @PKG_CONFIG@
+STRIP = @STRIP@
+VERSION = @VERSION@
+X_CFLAGS = @X_CFLAGS@
+X_EXTRA_LIBS = @X_EXTRA_LIBS@
+X_LIBS = @X_LIBS@
+X_PRE_LIBS = @X_PRE_LIBS@
+am__include = @am__include@
+am__quote = @am__quote@
+install_sh = @install_sh@
+themedir = $(pkgdatadir)/themes/g2
+theme_DATA = README \
+	bottom-active.xpm \
+	bottom-inactive.xpm \
+	bottom-left-active.xpm \
+	bottom-left-inactive.xpm \
+	bottom-right-active.xpm \
+	bottom-right-inactive.xpm \
+	close-active.xpm \
+	close-inactive.xpm \
+	close-pressed.xpm \
+	hide-active.xpm \
+	hide-inactive.xpm \
+	hide-pressed.xpm \
+	left-active.xpm \
+	left-inactive.xpm \
+	maximize-active.xpm \
+	maximize-inactive.xpm \
+	maximize-pressed.xpm \
+	menu-active.xpm \
+	menu-inactive.xpm \
+	menu-pressed.xpm \
+	right-active.xpm \
+	right-inactive.xpm \
+	shade-active.xpm \
+	shade-inactive.xpm \
+	shade-pressed.xpm \
+	stick-active.xpm \
+	stick-inactive.xpm \
+	stick-pressed.xpm \
+	themerc \
+	title-1-active.xpm \
+	title-1-inactive.xpm \
+	title-2-active.xpm \
+	title-2-inactive.xpm \
+	title-3-active.xpm \
+	title-3-inactive.xpm \
+	title-4-active.xpm \
+	title-4-inactive.xpm \
+	title-5-active.xpm \
+	title-5-inactive.xpm \
+	top-left-active.xpm \
+	top-left-inactive.xpm \
+	top-right-active.xpm \
+	top-right-inactive.xpm
+
+EXTRA_DIST = $(theme_DATA)
+subdir = themes/g2
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES =
+DIST_SOURCES =
+DATA = $(theme_DATA)
+
+DIST_COMMON = README Makefile.am Makefile.in
+all: all-am
+
+.SUFFIXES:
+$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+	cd $(top_srcdir) && \
+	  $(AUTOMAKE) --gnu  themes/g2/Makefile
+Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
+	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+uninstall-info-am:
+themeDATA_INSTALL = $(INSTALL_DATA)
+install-themeDATA: $(theme_DATA)
+	@$(NORMAL_INSTALL)
+	$(mkinstalldirs) $(DESTDIR)$(themedir)
+	@list='$(theme_DATA)'; for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+	  echo " $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f"; \
+	  $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f; \
+	done
+
+uninstall-themeDATA:
+	@$(NORMAL_UNINSTALL)
+	@list='$(theme_DATA)'; for p in $$list; do \
+	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+	  echo " rm -f $(DESTDIR)$(themedir)/$$f"; \
+	  rm -f $(DESTDIR)$(themedir)/$$f; \
+	done
+tags: TAGS
+TAGS:
+
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+
+top_distdir = ../..
+distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+
+distdir: $(DISTFILES)
+	@list='$(DISTFILES)'; for file in $$list; do \
+	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+	    dir="/$$dir"; \
+	    $(mkinstalldirs) "$(distdir)$$dir"; \
+	  else \
+	    dir=''; \
+	  fi; \
+	  if test -d $$d/$$file; then \
+	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+	    fi; \
+	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+	  else \
+	    test -f $(distdir)/$$file \
+	    || cp -p $$d/$$file $(distdir)/$$file \
+	    || exit 1; \
+	  fi; \
+	done
+check-am: all-am
+check: check-am
+all-am: Makefile $(DATA)
+
+installdirs:
+	$(mkinstalldirs) $(DESTDIR)$(themedir)
+
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+	@echo "This command is intended for maintainers to use"
+	@echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic mostlyclean-am
+
+distclean: distclean-am
+
+distclean-am: clean-am distclean-generic
+
+dvi: dvi-am
+
+dvi-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-themeDATA
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic
+
+uninstall-am: uninstall-info-am uninstall-themeDATA
+
+.PHONY: all all-am check check-am clean clean-generic distclean \
+	distclean-generic distdir dvi dvi-am info info-am install \
+	install-am install-data install-data-am install-exec \
+	install-exec-am install-info install-info-am install-man \
+	install-strip install-themeDATA installcheck installcheck-am \
+	installdirs maintainer-clean maintainer-clean-generic \
+	mostlyclean mostlyclean-generic uninstall uninstall-am \
+	uninstall-info-am uninstall-themeDATA
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/themes/g2/README b/themes/g2/README
new file mode 100644
index 0000000000000000000000000000000000000000..6c3e64322bf8da9095043c88e84a5cbc0baec864
--- /dev/null
+++ b/themes/g2/README
@@ -0,0 +1,11 @@
+g2
+--
+
+A themes based on a screenshot of gnome2 (probably running metacity)
+
+I have no idea of the name of the original theme, nor its original author(s)
+
+So credits go to the original author, whoever they are.
+
+PS: If you know the name of the original theme, please mail me
+    fourdan@xfce.org
diff --git a/themes/g2/bottom-active.xpm b/themes/g2/bottom-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..7f79c66632fa8324f50b6f3d44a9ecb495f163d3
--- /dev/null
+++ b/themes/g2/bottom-active.xpm
@@ -0,0 +1,12 @@
+/* XPM */
+static char * bottom_active_xpm[] = {
+"128 5 4 1",
+" 	c None",
+".	c #000000",
+"+	c #9F9F93",
+"@	c #6F6F67",
+"................................................................................................................................",
+"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
+"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
+"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
+"................................................................................................................................"};
diff --git a/themes/g2/bottom-inactive.xpm b/themes/g2/bottom-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..fb852697e8fb1028baca9bf3923261dfa99d3e7f
--- /dev/null
+++ b/themes/g2/bottom-inactive.xpm
@@ -0,0 +1,12 @@
+/* XPM */
+static char * bottom_inactive_xpm[] = {
+"128 5 4 1",
+" 	c None",
+".	c #DEDFCE",
+"+	c #A4A687",
+"@	c #000000",
+"................................................................................................................................",
+"................................................................................................................................",
+"................................................................................................................................",
+"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
+"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"};
diff --git a/themes/g2/bottom-left-active.xpm b/themes/g2/bottom-left-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..f15986cc8af570263adee9be94bcabdecff0d67e
--- /dev/null
+++ b/themes/g2/bottom-left-active.xpm
@@ -0,0 +1,41 @@
+/* XPM */
+static char * bottom_left_active_xpm[] = {
+"30 30 8 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #9F9F93",
+"#	c #DADAD3",
+"$	c #464643",
+"%	c #909084",
+"&	c #6F6F67",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+".+@@.                         ",
+" .#@$.........................",
+" .#@@@@@@@@@@@@@@@@@@@@@@@@@@@",
+"  .%%@@@@@@@@@@@@@@@@@@@@@@@@@",
+"   ..&&&&&&&&&&&&&&&&&&&&&&&&&",
+"     ........................."};
diff --git a/themes/g2/bottom-left-inactive.xpm b/themes/g2/bottom-left-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..f6570cd17c3c98858eb95b436392418a15939c8b
--- /dev/null
+++ b/themes/g2/bottom-left-inactive.xpm
@@ -0,0 +1,39 @@
+/* XPM */
+static char * bottom_left_inactive_xpm[] = {
+"30 30 6 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #DEDFCE",
+"#	c #DADAD3",
+"$	c #A4A687",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+".+@@@                         ",
+" .#@@@@@@@@@@@@@@@@@@@@@@@@@@@",
+" .#@@@@@@@@@@@@@@@@@@@@@@@@@@@",
+"  .@@@@@@@@@@@@@@@@@@@@@@@@@@@",
+"   ..$$$$$$$$$$$$$$$$$$$$$$$$$",
+"     ........................."};
diff --git a/themes/g2/bottom-right-active.xpm b/themes/g2/bottom-right-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..ec266f50b6120b61b7723a8cd588aaf0c4f406be
--- /dev/null
+++ b/themes/g2/bottom-right-active.xpm
@@ -0,0 +1,38 @@
+/* XPM */
+static char * bottom_right_active_xpm[] = {
+"30 30 5 1",
+" 	c None",
+".	c #000000",
+"+	c #9F9F93",
+"@	c #6F6F67",
+"#	c #464643",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+"                         .++@.",
+".........................#+@. ",
+"+++++++++++++++++++++++++++@. ",
+"+++++++++++++++++++++++++@@.  ",
+"@@@@@@@@@@@@@@@@@@@@@@@@@..   ",
+".........................     "};
diff --git a/themes/g2/bottom-right-inactive.xpm b/themes/g2/bottom-right-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..534402a4eacb479b58a9f1d37ef89fe454c8fb9d
--- /dev/null
+++ b/themes/g2/bottom-right-inactive.xpm
@@ -0,0 +1,37 @@
+/* XPM */
+static char * bottom_right_inactive_xpm[] = {
+"30 30 4 1",
+" 	c None",
+".	c #DEDFCE",
+"+	c #A4A687",
+"@	c #000000",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"                         ...+@",
+"...........................+@ ",
+"...........................+@ ",
+".........................++@  ",
+"+++++++++++++++++++++++++@@   ",
+"@@@@@@@@@@@@@@@@@@@@@@@@@     "};
diff --git a/themes/g2/close-active.xpm b/themes/g2/close-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..c36fb4155bcb6bea1760455dc804de50e56099b6
--- /dev/null
+++ b/themes/g2/close-active.xpm
@@ -0,0 +1,44 @@
+/* XPM */
+static char * close_active_xpm[] = {
+"17 23 18 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #808076",
+"@	c #7E7E74",
+"#	c #7C7C73",
+"$	c #FFFFFF",
+"%	c #7A7A71",
+"&	c #79796F",
+"*	c #77776E",
+"=	c #75756C",
+"-	c #73736A",
+";	c #717168",
+">	c #707067",
+",	c #6E6E65",
+"'	c #6C6C63",
+")	c #6A6A62",
+"!	c #686860",
+"~	c #67675E",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".@@@@@@@@@@@@@@@.",
+".##$$#######$$##.",
+".%%$$$%%%%%$$$%%.",
+".&&&$$$&&&$$$&&&.",
+".****$$$*$$$****.",
+".=====$$$$$=====.",
+".------$$$------.",
+".;;;;;$$$$$;;;;;.",
+".>>>>$$$>$$$>>>>.",
+".,,,$$$,,,$$$,,,.",
+".''$$$'''''$$$''.",
+".))$$)))))))$$)).",
+".!!!!!!!!!!!!!!!.",
+".~~~~~~~~~~~~~~~.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/close-inactive.xpm b/themes/g2/close-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..c6d64f5ef7ffdcd0f65bee605e7744e96d5af7be
--- /dev/null
+++ b/themes/g2/close-inactive.xpm
@@ -0,0 +1,60 @@
+/* XPM */
+static char * close_inactive_xpm[] = {
+"17 23 34 1",
+" 	c None",
+".	c #CBCCC2",
+"+	c #C8C8BE",
+"@	c #E8E9DE",
+"#	c #C5C6BA",
+"$	c #E5E6DA",
+"%	c #C2C3B6",
+"&	c #E1E2D5",
+"*	c #6F6F67",
+"=	c #BFC0B2",
+"-	c #DDDFD0",
+";	c #BCBDAF",
+">	c #DADBCC",
+",	c #B9BBAB",
+"'	c #D6D8C7",
+")	c #B7B8A8",
+"!	c #D3D4C3",
+"~	c #B4B4A4",
+"{	c #CFD0BE",
+"]	c #B0B2A0",
+"^	c #CBCDB9",
+"/	c #AEAF9D",
+"(	c #C8C9B5",
+"_	c #ABAC99",
+":	c #C4C6B0",
+"<	c #A8A995",
+"[	c #C0C2AB",
+"}	c #A5A792",
+"|	c #BDBFA7",
+"1	c #A2A48E",
+"2	c #B9BBA2",
+"3	c #A0A08A",
+"4	c #B6B79E",
+"5	c #9C9E86",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+"+@@@@@@@@@@@@@@@+",
+"#$$$$$$$$$$$$$$$#",
+"%&&**&&&&&&&**&&%",
+"=--***-----***--=",
+";>>>***>>>***>>>;",
+",''''***'***'''',",
+")!!!!!*****!!!!!)",
+"~{{{{{{***{{{{{{~",
+"]^^^^^*****^^^^^]",
+"/((((***(***((((/",
+"_:::***:::***:::_",
+"<[[***[[[[[***[[<",
+"}||**|||||||**||}",
+"12222222222222221",
+"34444444444444443",
+" 555555555555555 ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/close-pressed.xpm b/themes/g2/close-pressed.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..470987e1f61d1851b54b9fa0044a1aa7b3138d8d
--- /dev/null
+++ b/themes/g2/close-pressed.xpm
@@ -0,0 +1,30 @@
+/* XPM */
+static char * close_pressed_xpm[] = {
+"17 23 4 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #FFFFFF",
+"@	c #6F6F67",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".++@@+++++++@@++.",
+".++@@@+++++@@@++.",
+".+++@@@+++@@@+++.",
+".++++@@@+@@@++++.",
+".+++++@@@@@+++++.",
+".++++++@@@++++++.",
+".+++++@@@@@+++++.",
+".++++@@@+@@@++++.",
+".+++@@@+++@@@+++.",
+".++@@@+++++@@@++.",
+".++@@+++++++@@++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/hide-active.xpm b/themes/g2/hide-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..0784f9e592d64f61a161d7a6e13d75107442ab81
--- /dev/null
+++ b/themes/g2/hide-active.xpm
@@ -0,0 +1,44 @@
+/* XPM */
+static char * hide_active_xpm[] = {
+"17 23 18 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #808076",
+"@	c #7E7E74",
+"#	c #7C7C73",
+"$	c #7A7A71",
+"%	c #79796F",
+"&	c #77776E",
+"*	c #75756C",
+"=	c #73736A",
+"-	c #717168",
+";	c #707067",
+">	c #6E6E65",
+",	c #6C6C63",
+"'	c #FFFFFF",
+")	c #6A6A62",
+"!	c #686860",
+"~	c #67675E",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".@@@@@@@@@@@@@@@.",
+".###############.",
+".$$$$$$$$$$$$$$$.",
+".%%%%%%%%%%%%%%%.",
+".&&&&&&&&&&&&&&&.",
+".***************.",
+".===============.",
+".---------------.",
+".;;;;;;;;;;;;;;;.",
+".>>>>>>>>>>>>>>>.",
+".,,''''''''''',,.",
+".))''''''''''')).",
+".!!!!!!!!!!!!!!!.",
+".~~~~~~~~~~~~~~~.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/hide-inactive.xpm b/themes/g2/hide-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..aa51d67bbc12bca290e71f4cc95988f623c34d3e
--- /dev/null
+++ b/themes/g2/hide-inactive.xpm
@@ -0,0 +1,60 @@
+/* XPM */
+static char * hide_inactive_xpm[] = {
+"17 23 34 1",
+" 	c None",
+".	c #CBCCC2",
+"+	c #C8C8BE",
+"@	c #E8E9DE",
+"#	c #C5C6BA",
+"$	c #E5E6DA",
+"%	c #C2C3B6",
+"&	c #E1E2D5",
+"*	c #BFC0B2",
+"=	c #DDDFD0",
+"-	c #BCBDAF",
+";	c #DADBCC",
+">	c #B9BBAB",
+",	c #D6D8C7",
+"'	c #B7B8A8",
+")	c #D3D4C3",
+"!	c #B4B4A4",
+"~	c #CFD0BE",
+"{	c #B0B2A0",
+"]	c #CBCDB9",
+"^	c #AEAF9D",
+"/	c #C8C9B5",
+"(	c #ABAC99",
+"_	c #C4C6B0",
+":	c #A8A995",
+"<	c #C0C2AB",
+"[	c #6F6F67",
+"}	c #A5A792",
+"|	c #BDBFA7",
+"1	c #A2A48E",
+"2	c #B9BBA2",
+"3	c #A0A08A",
+"4	c #B6B79E",
+"5	c #9C9E86",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+"+@@@@@@@@@@@@@@@+",
+"#$$$$$$$$$$$$$$$#",
+"%&&&&&&&&&&&&&&&%",
+"*===============*",
+"-;;;;;;;;;;;;;;;-",
+">,,,,,,,,,,,,,,,>",
+"')))))))))))))))'",
+"!~~~~~~~~~~~~~~~!",
+"{]]]]]]]]]]]]]]]{",
+"^///////////////^",
+"(_______________(",
+":<<[[[[[[[[[[[<<:",
+"}||[[[[[[[[[[[||}",
+"12222222222222221",
+"34444444444444443",
+" 555555555555555 ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/hide-pressed.xpm b/themes/g2/hide-pressed.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..9437b9dfc732f9188721f74478c0eab9f9224084
--- /dev/null
+++ b/themes/g2/hide-pressed.xpm
@@ -0,0 +1,30 @@
+/* XPM */
+static char * hide_pressed_xpm[] = {
+"17 23 4 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #FFFFFF",
+"@	c #6F6F67",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".++@@@@@@@@@@@++.",
+".++@@@@@@@@@@@++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/left-active.xpm b/themes/g2/left-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..07058948c18cd7f59f6842cfb3bd8f8d433f9ff8
--- /dev/null
+++ b/themes/g2/left-active.xpm
@@ -0,0 +1,135 @@
+/* XPM */
+static char * left_active_xpm[] = {
+"5 128 4 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #9F9F93",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@.",
+".+@@."};
diff --git a/themes/g2/left-inactive.xpm b/themes/g2/left-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..f3ddb3dd3509b8f7de7bb2484003e0996e55dc06
--- /dev/null
+++ b/themes/g2/left-inactive.xpm
@@ -0,0 +1,135 @@
+/* XPM */
+static char * left_inactive_xpm[] = {
+"5 128 4 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #DEDFCE",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@",
+".+@@@"};
diff --git a/themes/g2/maximize-active.xpm b/themes/g2/maximize-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..7c8a8ff500a130fcd41cc5b9a3b0fe4f46b06342
--- /dev/null
+++ b/themes/g2/maximize-active.xpm
@@ -0,0 +1,44 @@
+/* XPM */
+static char * maximize_active_xpm[] = {
+"17 23 18 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #808076",
+"@	c #7E7E74",
+"#	c #7C7C73",
+"$	c #FFFFFF",
+"%	c #7A7A71",
+"&	c #79796F",
+"*	c #77776E",
+"=	c #75756C",
+"-	c #73736A",
+";	c #717168",
+">	c #707067",
+",	c #6E6E65",
+"'	c #6C6C63",
+")	c #6A6A62",
+"!	c #686860",
+"~	c #67675E",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".@@@@@@@@@@@@@@@.",
+".##$$$$$$$$$$$##.",
+".%%$$$$$$$$$$$%%.",
+".&&$$$$$$$$$$$&&.",
+".**$*********$**.",
+".==$=========$==.",
+".--$---------$--.",
+".;;$;;;;;;;;;$;;.",
+".>>$>>>>>>>>>$>>.",
+".,,$,,,,,,,,,$,,.",
+".''$'''''''''$''.",
+".))$$$$$$$$$$$)).",
+".!!!!!!!!!!!!!!!.",
+".~~~~~~~~~~~~~~~.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/maximize-inactive.xpm b/themes/g2/maximize-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..5b5c3b04ee429c8f05b05fc68230c8b834e07ac4
--- /dev/null
+++ b/themes/g2/maximize-inactive.xpm
@@ -0,0 +1,60 @@
+/* XPM */
+static char * maximize_inactive_xpm[] = {
+"17 23 34 1",
+" 	c None",
+".	c #CBCCC2",
+"+	c #C8C8BE",
+"@	c #E8E9DE",
+"#	c #C5C6BA",
+"$	c #E5E6DA",
+"%	c #C2C3B6",
+"&	c #E1E2D5",
+"*	c #6F6F67",
+"=	c #BFC0B2",
+"-	c #DDDFD0",
+";	c #BCBDAF",
+">	c #DADBCC",
+",	c #B9BBAB",
+"'	c #D6D8C7",
+")	c #B7B8A8",
+"!	c #D3D4C3",
+"~	c #B4B4A4",
+"{	c #CFD0BE",
+"]	c #B0B2A0",
+"^	c #CBCDB9",
+"/	c #AEAF9D",
+"(	c #C8C9B5",
+"_	c #ABAC99",
+":	c #C4C6B0",
+"<	c #A8A995",
+"[	c #C0C2AB",
+"}	c #A5A792",
+"|	c #BDBFA7",
+"1	c #A2A48E",
+"2	c #B9BBA2",
+"3	c #A0A08A",
+"4	c #B6B79E",
+"5	c #9C9E86",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+"+@@@@@@@@@@@@@@@+",
+"#$$$$$$$$$$$$$$$#",
+"%&&***********&&%",
+"=--***********--=",
+";>>***********>>;",
+",''*'''''''''*'',",
+")!!*!!!!!!!!!*!!)",
+"~{{*{{{{{{{{{*{{~",
+"]^^*^^^^^^^^^*^^]",
+"/((*(((((((((*((/",
+"_::*:::::::::*::_",
+"<[[*[[[[[[[[[*[[<",
+"}||***********||}",
+"12222222222222221",
+"34444444444444443",
+" 555555555555555 ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/maximize-pressed.xpm b/themes/g2/maximize-pressed.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..49c70a7efb110f16ce6671afa9d280e985b1abdb
--- /dev/null
+++ b/themes/g2/maximize-pressed.xpm
@@ -0,0 +1,30 @@
+/* XPM */
+static char * maximize_pressed_xpm[] = {
+"17 23 4 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #FFFFFF",
+"@	c #6F6F67",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".++@@@@@@@@@@@++.",
+".++@@@@@@@@@@@++.",
+".++@@@@@@@@@@@++.",
+".++@+++++++++@++.",
+".++@+++++++++@++.",
+".++@+++++++++@++.",
+".++@+++++++++@++.",
+".++@+++++++++@++.",
+".++@+++++++++@++.",
+".++@+++++++++@++.",
+".++@@@@@@@@@@@++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/menu-active.xpm b/themes/g2/menu-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..6c6652c102b02d0457f3bffdfee803369465f935
--- /dev/null
+++ b/themes/g2/menu-active.xpm
@@ -0,0 +1,44 @@
+/* XPM */
+static char * menu_active_xpm[] = {
+"17 23 18 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #808076",
+"@	c #7E7E74",
+"#	c #7C7C73",
+"$	c #7A7A71",
+"%	c #FFFFFF",
+"&	c #79796F",
+"*	c #77776E",
+"=	c #75756C",
+"-	c #73736A",
+";	c #717168",
+">	c #707067",
+",	c #6E6E65",
+"'	c #6C6C63",
+")	c #6A6A62",
+"!	c #686860",
+"~	c #67675E",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".@@@@@@@@@@@@@@@.",
+".###############.",
+".$$$%%%%%%%%%$$$.",
+".&&&%%%%%%%%%&&&.",
+".***************.",
+".===%%%%%%%%%===.",
+".---%%-----%%---.",
+".;;;;%%;;;%%;;;;.",
+".>>>>>%%>%%>>>>>.",
+".,,,,,,%%%,,,,,,.",
+".'''''''%'''''''.",
+".))))))))))))))).",
+".!!!!!!!!!!!!!!!.",
+".~~~~~~~~~~~~~~~.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/menu-inactive.xpm b/themes/g2/menu-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..827f5541ddec1f0213221b24475ea06ade947b0e
--- /dev/null
+++ b/themes/g2/menu-inactive.xpm
@@ -0,0 +1,60 @@
+/* XPM */
+static char * menu_inactive_xpm[] = {
+"17 23 34 1",
+" 	c None",
+".	c #CBCCC2",
+"+	c #C8C8BE",
+"@	c #E8E9DE",
+"#	c #C5C6BA",
+"$	c #E5E6DA",
+"%	c #C2C3B6",
+"&	c #E1E2D5",
+"*	c #BFC0B2",
+"=	c #DDDFD0",
+"-	c #6F6F67",
+";	c #BCBDAF",
+">	c #DADBCC",
+",	c #B9BBAB",
+"'	c #D6D8C7",
+")	c #B7B8A8",
+"!	c #D3D4C3",
+"~	c #B4B4A4",
+"{	c #CFD0BE",
+"]	c #B0B2A0",
+"^	c #CBCDB9",
+"/	c #AEAF9D",
+"(	c #C8C9B5",
+"_	c #ABAC99",
+":	c #C4C6B0",
+"<	c #A8A995",
+"[	c #C0C2AB",
+"}	c #A5A792",
+"|	c #BDBFA7",
+"1	c #A2A48E",
+"2	c #B9BBA2",
+"3	c #A0A08A",
+"4	c #B6B79E",
+"5	c #9C9E86",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+"+@@@@@@@@@@@@@@@+",
+"#$$$$$$$$$$$$$$$#",
+"%&&&&&&&&&&&&&&&%",
+"*===---------===*",
+";>>>--------->>>;",
+",''''''''''''''',",
+")!!!---------!!!)",
+"~{{{--{{{{{--{{{~",
+"]^^^^--^^^--^^^^]",
+"/(((((--(--(((((/",
+"_::::::---::::::_",
+"<[[[[[[[-[[[[[[[<",
+"}|||||||||||||||}",
+"12222222222222221",
+"34444444444444443",
+" 555555555555555 ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/menu-pressed.xpm b/themes/g2/menu-pressed.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..2c5dc232f4d81780d2aa2c7501e649c81673d8bb
--- /dev/null
+++ b/themes/g2/menu-pressed.xpm
@@ -0,0 +1,30 @@
+/* XPM */
+static char * menu_pressed_xpm[] = {
+"17 23 4 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #FFFFFF",
+"@	c #6F6F67",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++@@@@@@@@@+++.",
+".+++@@@@@@@@@+++.",
+".+++++++++++++++.",
+".+++@@@@@@@@@+++.",
+".+++@@+++++@@+++.",
+".++++@@+++@@++++.",
+".+++++@@+@@+++++.",
+".++++++@@@++++++.",
+".+++++++@+++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/right-active.xpm b/themes/g2/right-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..f15f6d7397db19fa929072f4933754b410043e2e
--- /dev/null
+++ b/themes/g2/right-active.xpm
@@ -0,0 +1,135 @@
+/* XPM */
+static char * right_active_xpm[] = {
+"5 128 4 1",
+" 	c None",
+".	c #000000",
+"+	c #9F9F93",
+"@	c #6F6F67",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@.",
+".++@."};
diff --git a/themes/g2/right-inactive.xpm b/themes/g2/right-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..98c65d95f0c07db35cd7359e47e00d2c31a7eb63
--- /dev/null
+++ b/themes/g2/right-inactive.xpm
@@ -0,0 +1,135 @@
+/* XPM */
+static char * right_inactive_xpm[] = {
+"5 128 4 1",
+" 	c None",
+".	c #DEDFCE",
+"+	c #A4A687",
+"@	c #000000",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@",
+"...+@"};
diff --git a/themes/g2/shade-active.xpm b/themes/g2/shade-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..53821b159c1bc1444a3519d7d45a0bf52935a8f4
--- /dev/null
+++ b/themes/g2/shade-active.xpm
@@ -0,0 +1,44 @@
+/* XPM */
+static char * shade_active_xpm[] = {
+"17 23 18 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #808076",
+"@	c #7E7E74",
+"#	c #7C7C73",
+"$	c #7A7A71",
+"%	c #FFFFFF",
+"&	c #79796F",
+"*	c #77776E",
+"=	c #75756C",
+"-	c #73736A",
+";	c #717168",
+">	c #707067",
+",	c #6E6E65",
+"'	c #6C6C63",
+")	c #6A6A62",
+"!	c #686860",
+"~	c #67675E",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".@@@@@@@@@@@@@@@.",
+".###############.",
+".$$$$$$$%$$$$$$$.",
+".&&&&&&%%%&&&&&&.",
+".*****%%*%%*****.",
+".====%%===%%====.",
+".---%%-----%%---.",
+".;;;%%%%%%%%%;;;.",
+".>>>>>>>>>>>>>>>.",
+".,,,%%%%%%%%%,,,.",
+".'''%%%%%%%%%'''.",
+".))))))))))))))).",
+".!!!!!!!!!!!!!!!.",
+".~~~~~~~~~~~~~~~.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/shade-inactive.xpm b/themes/g2/shade-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..d04bc2045ac15d70a7ec2a37b17f9f47d18c69f0
--- /dev/null
+++ b/themes/g2/shade-inactive.xpm
@@ -0,0 +1,60 @@
+/* XPM */
+static char * shade_inactive_xpm[] = {
+"17 23 34 1",
+" 	c None",
+".	c #CBCCC2",
+"+	c #C8C8BE",
+"@	c #E8E9DE",
+"#	c #C5C6BA",
+"$	c #E5E6DA",
+"%	c #C2C3B6",
+"&	c #E1E2D5",
+"*	c #BFC0B2",
+"=	c #DDDFD0",
+"-	c #6F6F67",
+";	c #BCBDAF",
+">	c #DADBCC",
+",	c #B9BBAB",
+"'	c #D6D8C7",
+")	c #B7B8A8",
+"!	c #D3D4C3",
+"~	c #B4B4A4",
+"{	c #CFD0BE",
+"]	c #B0B2A0",
+"^	c #CBCDB9",
+"/	c #AEAF9D",
+"(	c #C8C9B5",
+"_	c #ABAC99",
+":	c #C4C6B0",
+"<	c #A8A995",
+"[	c #C0C2AB",
+"}	c #A5A792",
+"|	c #BDBFA7",
+"1	c #A2A48E",
+"2	c #B9BBA2",
+"3	c #A0A08A",
+"4	c #B6B79E",
+"5	c #9C9E86",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+"+@@@@@@@@@@@@@@@+",
+"#$$$$$$$$$$$$$$$#",
+"%&&&&&&&&&&&&&&&%",
+"*=======-=======*",
+";>>>>>>--->>>>>>;",
+",'''''--'--''''',",
+")!!!!--!!!--!!!!)",
+"~{{{--{{{{{--{{{~",
+"]^^^---------^^^]",
+"/(((((((((((((((/",
+"_:::---------:::_",
+"<[[[---------[[[<",
+"}|||||||||||||||}",
+"12222222222222221",
+"34444444444444443",
+" 555555555555555 ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/shade-pressed.xpm b/themes/g2/shade-pressed.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..2566d3b494b467c6a91064bdbfca2e602a8d46bb
--- /dev/null
+++ b/themes/g2/shade-pressed.xpm
@@ -0,0 +1,30 @@
+/* XPM */
+static char * shade_pressed_xpm[] = {
+"17 23 4 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #FFFFFF",
+"@	c #6F6F67",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++@+++++++.",
+".++++++@@@++++++.",
+".+++++@@+@@+++++.",
+".++++@@+++@@++++.",
+".+++@@+++++@@+++.",
+".+++@@@@@@@@@+++.",
+".+++++++++++++++.",
+".+++@@@@@@@@@+++.",
+".+++@@@@@@@@@+++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/stick-active.xpm b/themes/g2/stick-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..ba2a556a73a3152fe806de6833699a54fdb343ce
--- /dev/null
+++ b/themes/g2/stick-active.xpm
@@ -0,0 +1,44 @@
+/* XPM */
+static char * stick_active_xpm[] = {
+"17 23 18 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #808076",
+"@	c #7E7E74",
+"#	c #7C7C73",
+"$	c #7A7A71",
+"%	c #79796F",
+"&	c #FFFFFF",
+"*	c #77776E",
+"=	c #75756C",
+"-	c #73736A",
+";	c #717168",
+">	c #707067",
+",	c #6E6E65",
+"'	c #6C6C63",
+")	c #6A6A62",
+"!	c #686860",
+"~	c #67675E",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".@@@@@@@@@@@@@@@.",
+".###############.",
+".$$$$$$$$$$$$$$$.",
+".%%%%%%%%&%%%&%%.",
+".********&&&&&**.",
+".===&&&&&&&&&&==.",
+".--&-----&--&&--.",
+".;;;&&&&&&;;&&;;.",
+".>>>>>>>>&&&&&>>.",
+".,,,,,,,,&,,,&,,.",
+".'''''''''''''''.",
+".))))))))))))))).",
+".!!!!!!!!!!!!!!!.",
+".~~~~~~~~~~~~~~~.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/stick-inactive.xpm b/themes/g2/stick-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..e1c2c9621e41ea0abf89ace928becf03ab81b02e
--- /dev/null
+++ b/themes/g2/stick-inactive.xpm
@@ -0,0 +1,60 @@
+/* XPM */
+static char * stick_inactive_xpm[] = {
+"17 23 34 1",
+" 	c None",
+".	c #CBCCC2",
+"+	c #C8C8BE",
+"@	c #E8E9DE",
+"#	c #C5C6BA",
+"$	c #E5E6DA",
+"%	c #C2C3B6",
+"&	c #E1E2D5",
+"*	c #BFC0B2",
+"=	c #DDDFD0",
+"-	c #BCBDAF",
+";	c #DADBCC",
+">	c #6F6F67",
+",	c #B9BBAB",
+"'	c #D6D8C7",
+")	c #B7B8A8",
+"!	c #D3D4C3",
+"~	c #B4B4A4",
+"{	c #CFD0BE",
+"]	c #B0B2A0",
+"^	c #CBCDB9",
+"/	c #AEAF9D",
+"(	c #C8C9B5",
+"_	c #ABAC99",
+":	c #C4C6B0",
+"<	c #A8A995",
+"[	c #C0C2AB",
+"}	c #A5A792",
+"|	c #BDBFA7",
+"1	c #A2A48E",
+"2	c #B9BBA2",
+"3	c #A0A08A",
+"4	c #B6B79E",
+"5	c #9C9E86",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+"+@@@@@@@@@@@@@@@+",
+"#$$$$$$$$$$$$$$$#",
+"%&&&&&&&&&&&&&&&%",
+"*===============*",
+"-;;;;;;;;>;;;>;;-",
+",''''''''>>>>>'',",
+")!!!>>>>>>>>>>!!)",
+"~{{>{{{{{>{{>>{{~",
+"]^^^>>>>>>^^>>^^]",
+"/((((((((>>>>>((/",
+"_::::::::>:::>::_",
+"<[[[[[[[[[[[[[[[<",
+"}|||||||||||||||}",
+"12222222222222221",
+"34444444444444443",
+" 555555555555555 ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/stick-pressed.xpm b/themes/g2/stick-pressed.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..f2575b694cde291b695f96fefd93c1c8c0e8955b
--- /dev/null
+++ b/themes/g2/stick-pressed.xpm
@@ -0,0 +1,30 @@
+/* XPM */
+static char * stick_pressed_xpm[] = {
+"17 23 4 1",
+" 	c None",
+".	c #BDBDB3",
+"+	c #FFFFFF",
+"@	c #6F6F67",
+"                 ",
+"                 ",
+"                 ",
+" ............... ",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".++++++++@+++@++.",
+".++++++++@@@@@++.",
+".+++@@@@@@@@@@++.",
+".++@+++++@++@@++.",
+".+++@@@@@@++@@++.",
+".++++++++@@@@@++.",
+".++++++++@+++@++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+".+++++++++++++++.",
+" ............... ",
+"                 ",
+"                 ",
+"                 "};
diff --git a/themes/g2/themerc b/themes/g2/themerc
new file mode 100644
index 0000000000000000000000000000000000000000..a633377833afd9a197d0adf3951ef9eac0704c58
--- /dev/null
+++ b/themes/g2/themerc
@@ -0,0 +1,6 @@
+full_width_title=true
+title_vertical_offset=2
+button_offset=3
+button_spacing=3
+active_text_color=#ffffff
+inactive_text_color=#000000
diff --git a/themes/g2/title-1-active.xpm b/themes/g2/title-1-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..9b6da477e15e5dfa0d3a9f27308283d67747616d
--- /dev/null
+++ b/themes/g2/title-1-active.xpm
@@ -0,0 +1,49 @@
+/* XPM */
+static char * title_1_active_xpm[] = {
+"8 23 23 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #AEAEA3",
+"#	c #ABABA0",
+"$	c #A8A89D",
+"%	c #A5A59A",
+"&	c #A2A297",
+"*	c #9F9F94",
+"=	c #9C9C91",
+"-	c #99998F",
+";	c #96968C",
+">	c #939389",
+",	c #909086",
+"'	c #8D8D83",
+")	c #8A8A80",
+"!	c #87877D",
+"~	c #84847B",
+"{	c #818178",
+"]	c #7E7E75",
+"^	c #7B7B72",
+"/	c #78786F",
+"(	c #6F6F67",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"........"};
diff --git a/themes/g2/title-1-inactive.xpm b/themes/g2/title-1-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..aee2922aeeb1f4a700d5b5c611902d0d250123f0
--- /dev/null
+++ b/themes/g2/title-1-inactive.xpm
@@ -0,0 +1,50 @@
+/* XPM */
+static char * title_1_inactive_xpm[] = {
+"8 23 24 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #F0F1E8",
+"#	c #ECEDE3",
+"$	c #E8E9DE",
+"%	c #E5E6DA",
+"&	c #E1E2D5",
+"*	c #DDDFD0",
+"=	c #DADBCC",
+"-	c #D6D8C7",
+";	c #D3D4C3",
+">	c #CFD0BE",
+",	c #CBCDB9",
+"'	c #C8C9B5",
+")	c #C4C6B0",
+"!	c #C0C2AB",
+"~	c #BDBFA7",
+"{	c #B9BBA2",
+"]	c #B6B79E",
+"^	c #B2B499",
+"/	c #AEB094",
+"(	c #A4A687",
+"_	c #A5A789",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"________"};
diff --git a/themes/g2/title-2-active.xpm b/themes/g2/title-2-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..240fa999a5f9365edbfc0e0f49fba4cd238425ed
--- /dev/null
+++ b/themes/g2/title-2-active.xpm
@@ -0,0 +1,49 @@
+/* XPM */
+static char * title_2_active_xpm[] = {
+"8 23 23 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #AEAEA3",
+"#	c #ABABA0",
+"$	c #A8A89D",
+"%	c #A5A59A",
+"&	c #A2A297",
+"*	c #9F9F94",
+"=	c #9C9C91",
+"-	c #99998F",
+";	c #96968C",
+">	c #939389",
+",	c #909086",
+"'	c #8D8D83",
+")	c #8A8A80",
+"!	c #87877D",
+"~	c #84847B",
+"{	c #818178",
+"]	c #7E7E75",
+"^	c #7B7B72",
+"/	c #78786F",
+"(	c #6F6F67",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"........"};
diff --git a/themes/g2/title-2-inactive.xpm b/themes/g2/title-2-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..13781a313969322d74482db743972d88223f0f66
--- /dev/null
+++ b/themes/g2/title-2-inactive.xpm
@@ -0,0 +1,50 @@
+/* XPM */
+static char * title_2_inactive_xpm[] = {
+"8 23 24 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #F0F1E8",
+"#	c #ECEDE3",
+"$	c #E8E9DE",
+"%	c #E5E6DA",
+"&	c #E1E2D5",
+"*	c #DDDFD0",
+"=	c #DADBCC",
+"-	c #D6D8C7",
+";	c #D3D4C3",
+">	c #CFD0BE",
+",	c #CBCDB9",
+"'	c #C8C9B5",
+")	c #C4C6B0",
+"!	c #C0C2AB",
+"~	c #BDBFA7",
+"{	c #B9BBA2",
+"]	c #B6B79E",
+"^	c #B2B499",
+"/	c #AEB094",
+"(	c #A4A687",
+"_	c #A5A789",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"________"};
diff --git a/themes/g2/title-3-active.xpm b/themes/g2/title-3-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..8510e3093311b822e674a78cc53bad451bcbc5c0
--- /dev/null
+++ b/themes/g2/title-3-active.xpm
@@ -0,0 +1,49 @@
+/* XPM */
+static char * title_3_active_xpm[] = {
+"128 23 23 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #AEAEA3",
+"#	c #ABABA0",
+"$	c #A8A89D",
+"%	c #A5A59A",
+"&	c #A2A297",
+"*	c #9F9F94",
+"=	c #9C9C91",
+"-	c #99998F",
+";	c #96968C",
+">	c #939389",
+",	c #909086",
+"'	c #8D8D83",
+")	c #8A8A80",
+"!	c #87877D",
+"~	c #84847B",
+"{	c #818178",
+"]	c #7E7E75",
+"^	c #7B7B72",
+"/	c #78786F",
+"(	c #6F6F67",
+"................................................................................................................................",
+"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
+"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
+"################################################################################################################################",
+"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
+"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
+"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
+"********************************************************************************************************************************",
+"================================================================================================================================",
+"--------------------------------------------------------------------------------------------------------------------------------",
+";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
+">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
+",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
+"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
+"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
+"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
+"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
+"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
+"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
+"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
+"////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////",
+"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
+"................................................................................................................................"};
diff --git a/themes/g2/title-3-inactive.xpm b/themes/g2/title-3-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..e82efd7cb7db9e6afff45d6704e1663295ed4f7c
--- /dev/null
+++ b/themes/g2/title-3-inactive.xpm
@@ -0,0 +1,50 @@
+/* XPM */
+static char * title_3_inactive_xpm[] = {
+"128 23 24 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #F0F1E8",
+"#	c #ECEDE3",
+"$	c #E8E9DE",
+"%	c #E5E6DA",
+"&	c #E1E2D5",
+"*	c #DDDFD0",
+"=	c #DADBCC",
+"-	c #D6D8C7",
+";	c #D3D4C3",
+">	c #CFD0BE",
+",	c #CBCDB9",
+"'	c #C8C9B5",
+")	c #C4C6B0",
+"!	c #C0C2AB",
+"~	c #BDBFA7",
+"{	c #B9BBA2",
+"]	c #B6B79E",
+"^	c #B2B499",
+"/	c #AEB094",
+"(	c #A4A687",
+"_	c #A5A789",
+"................................................................................................................................",
+"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
+"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
+"################################################################################################################################",
+"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
+"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
+"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
+"********************************************************************************************************************************",
+"================================================================================================================================",
+"--------------------------------------------------------------------------------------------------------------------------------",
+";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
+">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
+",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
+"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
+"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
+"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
+"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
+"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
+"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
+"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
+"////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////",
+"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
+"________________________________________________________________________________________________________________________________"};
diff --git a/themes/g2/title-4-active.xpm b/themes/g2/title-4-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..3fcf16fd5a8d71ca19545ee5ab2550a2c7fbc5a1
--- /dev/null
+++ b/themes/g2/title-4-active.xpm
@@ -0,0 +1,49 @@
+/* XPM */
+static char * title_4_active_xpm[] = {
+"8 23 23 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #AEAEA3",
+"#	c #ABABA0",
+"$	c #A8A89D",
+"%	c #A5A59A",
+"&	c #A2A297",
+"*	c #9F9F94",
+"=	c #9C9C91",
+"-	c #99998F",
+";	c #96968C",
+">	c #939389",
+",	c #909086",
+"'	c #8D8D83",
+")	c #8A8A80",
+"!	c #87877D",
+"~	c #84847B",
+"{	c #818178",
+"]	c #7E7E75",
+"^	c #7B7B72",
+"/	c #78786F",
+"(	c #6F6F67",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"........"};
diff --git a/themes/g2/title-4-inactive.xpm b/themes/g2/title-4-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..c93b2a533f2abd53021dba46b23088b9c70795e5
--- /dev/null
+++ b/themes/g2/title-4-inactive.xpm
@@ -0,0 +1,50 @@
+/* XPM */
+static char * title_4_inactive_xpm[] = {
+"8 23 24 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #F0F1E8",
+"#	c #ECEDE3",
+"$	c #E8E9DE",
+"%	c #E5E6DA",
+"&	c #E1E2D5",
+"*	c #DDDFD0",
+"=	c #DADBCC",
+"-	c #D6D8C7",
+";	c #D3D4C3",
+">	c #CFD0BE",
+",	c #CBCDB9",
+"'	c #C8C9B5",
+")	c #C4C6B0",
+"!	c #C0C2AB",
+"~	c #BDBFA7",
+"{	c #B9BBA2",
+"]	c #B6B79E",
+"^	c #B2B499",
+"/	c #AEB094",
+"(	c #A4A687",
+"_	c #A5A789",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"________"};
diff --git a/themes/g2/title-5-active.xpm b/themes/g2/title-5-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..8c772f767b47ce33faf8327ee10cf1b56ab5485a
--- /dev/null
+++ b/themes/g2/title-5-active.xpm
@@ -0,0 +1,49 @@
+/* XPM */
+static char * title_5_active_xpm[] = {
+"8 23 23 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #AEAEA3",
+"#	c #ABABA0",
+"$	c #A8A89D",
+"%	c #A5A59A",
+"&	c #A2A297",
+"*	c #9F9F94",
+"=	c #9C9C91",
+"-	c #99998F",
+";	c #96968C",
+">	c #939389",
+",	c #909086",
+"'	c #8D8D83",
+")	c #8A8A80",
+"!	c #87877D",
+"~	c #84847B",
+"{	c #818178",
+"]	c #7E7E75",
+"^	c #7B7B72",
+"/	c #78786F",
+"(	c #6F6F67",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"........"};
diff --git a/themes/g2/title-5-inactive.xpm b/themes/g2/title-5-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..3ba979857c01328f048c27f8ab21fad3252320a5
--- /dev/null
+++ b/themes/g2/title-5-inactive.xpm
@@ -0,0 +1,50 @@
+/* XPM */
+static char * title_5_inactive_xpm[] = {
+"8 23 24 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #F0F1E8",
+"#	c #ECEDE3",
+"$	c #E8E9DE",
+"%	c #E5E6DA",
+"&	c #E1E2D5",
+"*	c #DDDFD0",
+"=	c #DADBCC",
+"-	c #D6D8C7",
+";	c #D3D4C3",
+">	c #CFD0BE",
+",	c #CBCDB9",
+"'	c #C8C9B5",
+")	c #C4C6B0",
+"!	c #C0C2AB",
+"~	c #BDBFA7",
+"{	c #B9BBA2",
+"]	c #B6B79E",
+"^	c #B2B499",
+"/	c #AEB094",
+"(	c #A4A687",
+"_	c #A5A789",
+"........",
+"++++++++",
+"@@@@@@@@",
+"########",
+"$$$$$$$$",
+"%%%%%%%%",
+"&&&&&&&&",
+"********",
+"========",
+"--------",
+";;;;;;;;",
+">>>>>>>>",
+",,,,,,,,",
+"''''''''",
+"))))))))",
+"!!!!!!!!",
+"~~~~~~~~",
+"{{{{{{{{",
+"]]]]]]]]",
+"^^^^^^^^",
+"////////",
+"((((((((",
+"________"};
diff --git a/themes/g2/top-left-active.xpm b/themes/g2/top-left-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..0041c09ca7befbeb7b9798f3aff9613a7b390728
--- /dev/null
+++ b/themes/g2/top-left-active.xpm
@@ -0,0 +1,116 @@
+/* XPM */
+static char * top_left_active_xpm[] = {
+"16 60 53 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #AEAEA3",
+"#	c #ABABA0",
+"$	c #A8A89D",
+"%	c #A5A59A",
+"&	c #A2A297",
+"*	c #9F9F94",
+"=	c #9C9C91",
+"-	c #99998F",
+";	c #96968C",
+">	c #939389",
+",	c #909086",
+"'	c #8D8D83",
+")	c #8A8A80",
+"!	c #87877D",
+"~	c #84847B",
+"{	c #818178",
+"]	c #7E7E75",
+"^	c #7B7B72",
+"/	c #78786F",
+"(	c #6F6F67",
+"_	c #707068",
+":	c #464643",
+"<	c #727269",
+"[	c #73736B",
+"}	c #75756C",
+"|	c #76766D",
+"1	c #797970",
+"2	c #7C7C73",
+"3	c #7E7E74",
+"4	c #7F7F76",
+"5	c #818177",
+"6	c #828278",
+"7	c #84847A",
+"8	c #85857B",
+"9	c #88887E",
+"0	c #8A8A7F",
+"a	c #8B8B81",
+"b	c #8D8D82",
+"c	c #8E8E83",
+"d	c #909085",
+"e	c #919186",
+"f	c #939388",
+"g	c #949489",
+"h	c #96968A",
+"i	c #97978C",
+"j	c #99998D",
+"k	c #9A9A8E",
+"l	c #9C9C90",
+"m	c #9D9D91",
+"n	c #9F9F93",
+"     ...........",
+"   ..+++++++++++",
+"  .++@@@@@@@@@@@",
+" .+#############",
+" .+$$$$$$$$$$$$$",
+".+%%%%%%%%%%%%%%",
+".+&&&&&&&&&&&&&&",
+".+**************",
+".+==============",
+".+--------------",
+".+;;;;;;;;;;;;;;",
+".+>>>>>>>>>>>>>>",
+".+,,,,,,,,,,,,,,",
+".+''''''''''''''",
+".+))))))))))))))",
+".+!!!!!!!!!!!!!!",
+".+~~~~~~~~~~~~~~",
+".+{{{{{{{{{{{{{{",
+".+]]]]]]]]]]]]]]",
+".+^^^^^^^^^^^^^^",
+".+//////////////",
+".+((((((((((((((",
+".+__:...........",
+".+<<.           ",
+".+[[.           ",
+".+}}.           ",
+".+||.           ",
+".+//.           ",
+".+11.           ",
+".+^^.           ",
+".+22.           ",
+".+33.           ",
+".+44.           ",
+".+55.           ",
+".+66.           ",
+".+77.           ",
+".+88.           ",
+".+!!.           ",
+".+99.           ",
+".+00.           ",
+".+aa.           ",
+".+bb.           ",
+".+cc.           ",
+".+dd.           ",
+".+ee.           ",
+".+ff.           ",
+".+gg.           ",
+".+hh.           ",
+".+ii.           ",
+".+jj.           ",
+".+kk.           ",
+".+ll.           ",
+".+mm.           ",
+".+nn.           ",
+".+nn.           ",
+".+nn.           ",
+".+nn.           ",
+".+nn.           ",
+".+nn.           ",
+".+nn.           "};
diff --git a/themes/g2/top-left-inactive.xpm b/themes/g2/top-left-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..505ec75184b27cf4fabd7000ba29d791d5948dd2
--- /dev/null
+++ b/themes/g2/top-left-inactive.xpm
@@ -0,0 +1,117 @@
+/* XPM */
+static char * top_left_inactive_xpm[] = {
+"16 60 54 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #F0F1E8",
+"#	c #ECEDE3",
+"$	c #E8E9DE",
+"%	c #E5E6DA",
+"&	c #E1E2D5",
+"*	c #DDDFD0",
+"=	c #DADBCC",
+"-	c #D6D8C7",
+";	c #D3D4C3",
+">	c #CFD0BE",
+",	c #CBCDB9",
+"'	c #C8C9B5",
+")	c #C4C6B0",
+"!	c #C0C2AB",
+"~	c #BDBFA7",
+"{	c #B9BBA2",
+"]	c #B6B79E",
+"^	c #B2B499",
+"/	c #AEB094",
+"(	c #A4A687",
+"_	c #A5A789",
+":	c #A7A98B",
+"<	c #A9AB8D",
+"[	c #ABAD8F",
+"}	c #ADAE92",
+"|	c #B0B296",
+"1	c #B2B498",
+"2	c #B4B69A",
+"3	c #B6B79D",
+"4	c #B7B99F",
+"5	c #B9BBA1",
+"6	c #BBBDA3",
+"7	c #BDBEA6",
+"8	c #BFC0A8",
+"9	c #C1C2AA",
+"0	c #C2C4AC",
+"a	c #C4C6AE",
+"b	c #C6C7B1",
+"c	c #C8C9B3",
+"d	c #CACBB5",
+"e	c #CBCDB7",
+"f	c #CDCEBA",
+"g	c #CFD0BC",
+"h	c #D1D2BE",
+"i	c #D3D4C0",
+"j	c #D4D6C2",
+"k	c #D6D7C5",
+"l	c #D8D9C7",
+"m	c #DADBC9",
+"n	c #DCDDCB",
+"o	c #DEDFCE",
+"     ...........",
+"   ..+++++++++++",
+"  .++@@@@@@@@@@@",
+" .+#############",
+" .+$$$$$$$$$$$$$",
+".+%%%%%%%%%%%%%%",
+".+&&&&&&&&&&&&&&",
+".+**************",
+".+==============",
+".+--------------",
+".+;;;;;;;;;;;;;;",
+".+>>>>>>>>>>>>>>",
+".+,,,,,,,,,,,,,,",
+".+''''''''''''''",
+".+))))))))))))))",
+".+!!!!!!!!!!!!!!",
+".+~~~~~~~~~~~~~~",
+".+{{{{{{{{{{{{{{",
+".+]]]]]]]]]]]]]]",
+".+^^^^^^^^^^^^^^",
+".+//////////////",
+".+((((((((((((((",
+".+______________",
+".+:::           ",
+".+<<<           ",
+".+[[[           ",
+".+}}}           ",
+".+///           ",
+".+|||           ",
+".+111           ",
+".+222           ",
+".+333           ",
+".+444           ",
+".+555           ",
+".+666           ",
+".+777           ",
+".+888           ",
+".+999           ",
+".+000           ",
+".+aaa           ",
+".+bbb           ",
+".+ccc           ",
+".+ddd           ",
+".+eee           ",
+".+fff           ",
+".+ggg           ",
+".+hhh           ",
+".+iii           ",
+".+jjj           ",
+".+kkk           ",
+".+lll           ",
+".+mmm           ",
+".+nnn           ",
+".+ooo           ",
+".+ooo           ",
+".+ooo           ",
+".+ooo           ",
+".+ooo           ",
+".+ooo           ",
+".+ooo           "};
diff --git a/themes/g2/top-right-active.xpm b/themes/g2/top-right-active.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..6b74ce46b528a4b82d097c67c997e28311c7f297
--- /dev/null
+++ b/themes/g2/top-right-active.xpm
@@ -0,0 +1,118 @@
+/* XPM */
+static char * top_right_active_xpm[] = {
+"16 60 55 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #AEAEA3",
+"#	c #909084",
+"$	c #ABABA0",
+"%	c #808075",
+"&	c #A8A89D",
+"*	c #A5A59A",
+"=	c #6F6F67",
+"-	c #A2A297",
+";	c #9F9F94",
+">	c #9C9C91",
+",	c #99998F",
+"'	c #96968C",
+")	c #939389",
+"!	c #909086",
+"~	c #8D8D83",
+"{	c #8A8A80",
+"]	c #87877D",
+"^	c #84847B",
+"/	c #818178",
+"(	c #7E7E75",
+"_	c #7B7B72",
+":	c #78786F",
+"<	c #464643",
+"[	c #707068",
+"}	c #727269",
+"|	c #73736B",
+"1	c #75756C",
+"2	c #76766D",
+"3	c #797970",
+"4	c #7C7C73",
+"5	c #7E7E74",
+"6	c #7F7F76",
+"7	c #818177",
+"8	c #828278",
+"9	c #84847A",
+"0	c #85857B",
+"a	c #88887E",
+"b	c #8A8A7F",
+"c	c #8B8B81",
+"d	c #8D8D82",
+"e	c #8E8E83",
+"f	c #909085",
+"g	c #919186",
+"h	c #939388",
+"i	c #949489",
+"j	c #96968A",
+"k	c #97978C",
+"l	c #99998D",
+"m	c #9A9A8E",
+"n	c #9C9C90",
+"o	c #9D9D91",
+"p	c #9F9F93",
+"...........     ",
+"+++++++++++..   ",
+"@@@@@@@@@@@@#.  ",
+"$$$$$$$$$$$$$%. ",
+"&&&&&&&&&&&&&%. ",
+"**************=.",
+"--------------=.",
+";;;;;;;;;;;;;;=.",
+">>>>>>>>>>>>>>=.",
+",,,,,,,,,,,,,,=.",
+"''''''''''''''=.",
+"))))))))))))))=.",
+"!!!!!!!!!!!!!!=.",
+"~~~~~~~~~~~~~~=.",
+"{{{{{{{{{{{{{{=.",
+"]]]]]]]]]]]]]]=.",
+"^^^^^^^^^^^^^^=.",
+"//////////////=.",
+"((((((((((((((=.",
+"______________=.",
+"::::::::::::::=.",
+"===============.",
+"...........<[[=.",
+"           .}}=.",
+"           .||=.",
+"           .11=.",
+"           .22=.",
+"           .::=.",
+"           .33=.",
+"           .__=.",
+"           .44=.",
+"           .55=.",
+"           .66=.",
+"           .77=.",
+"           .88=.",
+"           .99=.",
+"           .00=.",
+"           .]]=.",
+"           .aa=.",
+"           .bb=.",
+"           .cc=.",
+"           .dd=.",
+"           .ee=.",
+"           .ff=.",
+"           .gg=.",
+"           .hh=.",
+"           .ii=.",
+"           .jj=.",
+"           .kk=.",
+"           .ll=.",
+"           .mm=.",
+"           .nn=.",
+"           .oo=.",
+"           .pp=.",
+"           .pp=.",
+"           .pp=.",
+"           .pp=.",
+"           .pp=.",
+"           .pp=.",
+"           .pp=."};
diff --git a/themes/g2/top-right-inactive.xpm b/themes/g2/top-right-inactive.xpm
new file mode 100644
index 0000000000000000000000000000000000000000..2037445681d36ba59406007bf1b24fff5e65b08c
--- /dev/null
+++ b/themes/g2/top-right-inactive.xpm
@@ -0,0 +1,119 @@
+/* XPM */
+static char * top_right_inactive_xpm[] = {
+"16 60 56 1",
+" 	c None",
+".	c #000000",
+"+	c #FFFFFF",
+"@	c #F0F1E8",
+"#	c #CCCDB6",
+"$	c #ECEDE3",
+"%	c #B8BA9E",
+"&	c #E8E9DE",
+"*	c #E5E6DA",
+"=	c #A4A687",
+"-	c #E1E2D5",
+";	c #DDDFD0",
+">	c #DADBCC",
+",	c #D6D8C7",
+"'	c #D3D4C3",
+")	c #CFD0BE",
+"!	c #CBCDB9",
+"~	c #C8C9B5",
+"{	c #C4C6B0",
+"]	c #C0C2AB",
+"^	c #BDBFA7",
+"/	c #B9BBA2",
+"(	c #B6B79E",
+"_	c #B2B499",
+":	c #AEB094",
+"<	c #A5A789",
+"[	c #A7A98B",
+"}	c #A9AB8D",
+"|	c #ABAD8F",
+"1	c #ADAE92",
+"2	c #B0B296",
+"3	c #B2B498",
+"4	c #B4B69A",
+"5	c #B6B79D",
+"6	c #B7B99F",
+"7	c #B9BBA1",
+"8	c #BBBDA3",
+"9	c #BDBEA6",
+"0	c #BFC0A8",
+"a	c #C1C2AA",
+"b	c #C2C4AC",
+"c	c #C4C6AE",
+"d	c #C6C7B1",
+"e	c #C8C9B3",
+"f	c #CACBB5",
+"g	c #CBCDB7",
+"h	c #CDCEBA",
+"i	c #CFD0BC",
+"j	c #D1D2BE",
+"k	c #D3D4C0",
+"l	c #D4D6C2",
+"m	c #D6D7C5",
+"n	c #D8D9C7",
+"o	c #DADBC9",
+"p	c #DCDDCB",
+"q	c #DEDFCE",
+"...........     ",
+"+++++++++++..   ",
+"@@@@@@@@@@@@#.  ",
+"$$$$$$$$$$$$$%. ",
+"&&&&&&&&&&&&&%. ",
+"**************=.",
+"--------------=.",
+";;;;;;;;;;;;;;=.",
+">>>>>>>>>>>>>>=.",
+",,,,,,,,,,,,,,=.",
+"''''''''''''''=.",
+"))))))))))))))=.",
+"!!!!!!!!!!!!!!=.",
+"~~~~~~~~~~~~~~=.",
+"{{{{{{{{{{{{{{=.",
+"]]]]]]]]]]]]]]=.",
+"^^^^^^^^^^^^^^=.",
+"//////////////=.",
+"((((((((((((((=.",
+"______________=.",
+"::::::::::::::=.",
+"===============.",
+"<<<<<<<<<<<<<<=.",
+"           [[[=.",
+"           }}}=.",
+"           |||=.",
+"           111=.",
+"           :::=.",
+"           222=.",
+"           333=.",
+"           444=.",
+"           555=.",
+"           666=.",
+"           777=.",
+"           888=.",
+"           999=.",
+"           000=.",
+"           aaa=.",
+"           bbb=.",
+"           ccc=.",
+"           ddd=.",
+"           eee=.",
+"           fff=.",
+"           ggg=.",
+"           hhh=.",
+"           iii=.",
+"           jjj=.",
+"           kkk=.",
+"           lll=.",
+"           mmm=.",
+"           nnn=.",
+"           ooo=.",
+"           ppp=.",
+"           qqq=.",
+"           qqq=.",
+"           qqq=.",
+"           qqq=.",
+"           qqq=.",
+"           qqq=.",
+"           qqq=."};
diff --git a/xfwm4.spec.in b/xfwm4.spec.in
index b0c514cf9eefe0f618ef08ac49ff7bed2db97603..2d4930a6547d84813c6c9fe6e42252732b3a9701 100644
--- a/xfwm4.spec.in
+++ b/xfwm4.spec.in
@@ -57,6 +57,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/xfwm4/themes/crux
 %{_datadir}/xfwm4/themes/cruxish
 %{_datadir}/xfwm4/themes/eazel-blue
+%{_datadir}/xfwm4/themes/g2
 %{_datadir}/xfwm4/themes/gorilla
 %{_datadir}/xfwm4/themes/gtk
 %{_datadir}/xfwm4/themes/iceg