diff --git a/releases/12/.gitignore b/releases/12/.gitignore
new file mode 100644
index 0000000..b5624b7
--- /dev/null
+++ b/releases/12/.gitignore
@@ -0,0 +1 @@
+*.tar.xz
diff --git a/releases/12/Makefile b/releases/12/Makefile
new file mode 100644
index 0000000..4e8cef5
--- /dev/null
+++ b/releases/12/Makefile
@@ -0,0 +1,14 @@
+SUBDIRS=sabayon-artwork-core sabayon-artwork-kde sabayon-artwork-gnome \
+ sabayon-artwork-extra sabayon-artwork-loo sabayon-artwork-lxde \
+ sabayon-artwork-isolinux sabayon-artwork-grub
+
+include make.include
+
+all:
+ for d in $(SUBDIRS); do $(MAKE) -C $$d || exit 1; done
+
+clean:
+ for d in $(SUBDIRS); do $(MAKE) -C $$d clean || exit 1; done
+
+push:
+ for d in $(SUBDIRS); do $(MAKE) -C $$d push || exit 1; done
diff --git a/releases/12/_devel/bizcom.svg b/releases/12/_devel/bizcom.svg
new file mode 100644
index 0000000..b040e2d
--- /dev/null
+++ b/releases/12/_devel/bizcom.svg
@@ -0,0 +1,154 @@
+
+
+
+
diff --git a/releases/12/_devel/fbsplash_silent_16_9.svg b/releases/12/_devel/fbsplash_silent_16_9.svg
new file mode 100644
index 0000000..bec86cc
--- /dev/null
+++ b/releases/12/_devel/fbsplash_silent_16_9.svg
@@ -0,0 +1,20755 @@
+
+
+
+
diff --git a/releases/12/_devel/fbsplash_silent_4_3.svg b/releases/12/_devel/fbsplash_silent_4_3.svg
new file mode 100644
index 0000000..b711f91
--- /dev/null
+++ b/releases/12/_devel/fbsplash_silent_4_3.svg
@@ -0,0 +1,20756 @@
+
+
+
+
diff --git a/releases/12/_devel/fbsplash_verbose_16_9.svg b/releases/12/_devel/fbsplash_verbose_16_9.svg
new file mode 100644
index 0000000..8e64191
--- /dev/null
+++ b/releases/12/_devel/fbsplash_verbose_16_9.svg
@@ -0,0 +1,20717 @@
+
+
+
+
diff --git a/releases/12/_devel/fbsplash_verbose_4_3.svg b/releases/12/_devel/fbsplash_verbose_4_3.svg
new file mode 100644
index 0000000..35ccc27
--- /dev/null
+++ b/releases/12/_devel/fbsplash_verbose_4_3.svg
@@ -0,0 +1,20718 @@
+
+
+
+
diff --git a/releases/12/_devel/grub.svg b/releases/12/_devel/grub.svg
new file mode 100644
index 0000000..494c898
--- /dev/null
+++ b/releases/12/_devel/grub.svg
@@ -0,0 +1,20756 @@
+
+
+
+
diff --git a/releases/12/_devel/isolinux.svg b/releases/12/_devel/isolinux.svg
new file mode 100644
index 0000000..e62335e
--- /dev/null
+++ b/releases/12/_devel/isolinux.svg
@@ -0,0 +1,20756 @@
+
+
+
+
diff --git a/releases/12/_devel/libreoffice_about.svg b/releases/12/_devel/libreoffice_about.svg
new file mode 100644
index 0000000..160e416
--- /dev/null
+++ b/releases/12/_devel/libreoffice_about.svg
@@ -0,0 +1,21001 @@
+
+
+
+
diff --git a/releases/12/_devel/libreoffice_intro.svg b/releases/12/_devel/libreoffice_intro.svg
new file mode 100644
index 0000000..16de81b
--- /dev/null
+++ b/releases/12/_devel/libreoffice_intro.svg
@@ -0,0 +1,17580 @@
+
+
+
+
diff --git a/releases/12/_devel/wallpaper_final.svg b/releases/12/_devel/wallpaper_final.svg
new file mode 100644
index 0000000..fe6cd71
--- /dev/null
+++ b/releases/12/_devel/wallpaper_final.svg
@@ -0,0 +1,20755 @@
+
+
+
+
diff --git a/releases/12/_devel/wallpaper_final_kgdm.svg b/releases/12/_devel/wallpaper_final_kgdm.svg
new file mode 100644
index 0000000..feaf485
--- /dev/null
+++ b/releases/12/_devel/wallpaper_final_kgdm.svg
@@ -0,0 +1,20709 @@
+
+
+
+
diff --git a/releases/12/make.include b/releases/12/make.include
new file mode 100644
index 0000000..245935a
--- /dev/null
+++ b/releases/12/make.include
@@ -0,0 +1,7 @@
+# Global build system variables
+
+PUSH_SERVER ?= distfiles.sabayon.org
+PUSH_PORT ?= 22
+PUSH_DIR ?= /sabayon/rsync/rsync.sabayon.org/distfiles/
+PUSH_USER ?= $(shell whoami)
+VERSION ?= 12
diff --git a/releases/12/sabayon-artwork-core/Makefile b/releases/12/sabayon-artwork-core/Makefile
new file mode 100644
index 0000000..4c541e0
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/Makefile
@@ -0,0 +1,29 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+ ./make_wallpaper.sh
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-core/background/kgdm.jpg b/releases/12/sabayon-artwork-core/background/kgdm.jpg
new file mode 100644
index 0000000..d0fb91e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/kgdm.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/kgdm.png b/releases/12/sabayon-artwork-core/background/kgdm.png
new file mode 100644
index 0000000..21b6c4c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/kgdm.png differ
diff --git a/releases/12/sabayon-artwork-core/background/quadros-sabayon.jpg b/releases/12/sabayon-artwork-core/background/quadros-sabayon.jpg
new file mode 100644
index 0000000..dd65235
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/quadros-sabayon.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/sabayon-depth.png b/releases/12/sabayon-artwork-core/background/sabayon-depth.png
new file mode 100644
index 0000000..becf080
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/sabayon-depth.png differ
diff --git a/releases/12/sabayon-artwork-core/background/sabayon-k4ph-lenses.jpg b/releases/12/sabayon-artwork-core/background/sabayon-k4ph-lenses.jpg
new file mode 100644
index 0000000..3865cfc
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/sabayon-k4ph-lenses.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/sabayon-simple.png b/releases/12/sabayon-artwork-core/background/sabayon-simple.png
new file mode 100644
index 0000000..9329a6e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/sabayon-simple.png differ
diff --git a/releases/12/sabayon-artwork-core/background/sabayon_arms.jpg b/releases/12/sabayon-artwork-core/background/sabayon_arms.jpg
new file mode 100644
index 0000000..633066d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/sabayon_arms.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/sabayon_darkforest.png b/releases/12/sabayon-artwork-core/background/sabayon_darkforest.png
new file mode 100644
index 0000000..72bff1d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/sabayon_darkforest.png differ
diff --git a/releases/12/sabayon-artwork-core/background/sabayonlinux.jpg b/releases/12/sabayon-artwork-core/background/sabayonlinux.jpg
new file mode 100644
index 0000000..7ea1052
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/sabayonlinux.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/sabayonlinux.png b/releases/12/sabayon-artwork-core/background/sabayonlinux.png
new file mode 100644
index 0000000..7d2a70f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/sabayonlinux.png differ
diff --git a/releases/12/sabayon-artwork-core/background/tarabaz.jpg b/releases/12/sabayon-artwork-core/background/tarabaz.jpg
new file mode 100644
index 0000000..d4ecd6c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/tarabaz.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/wolfden-bokeh2.jpg b/releases/12/sabayon-artwork-core/background/wolfden-bokeh2.jpg
new file mode 100644
index 0000000..858b4e7
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/wolfden-bokeh2.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/wolfden-flock.jpg b/releases/12/sabayon-artwork-core/background/wolfden-flock.jpg
new file mode 100644
index 0000000..ed07837
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/wolfden-flock.jpg differ
diff --git a/releases/12/sabayon-artwork-core/background/wolfden-ndsunset.jpg b/releases/12/sabayon-artwork-core/background/wolfden-ndsunset.jpg
new file mode 100644
index 0000000..e2f860b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/background/wolfden-ndsunset.jpg differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1024x600.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1024x600.cfg
new file mode 100644
index 0000000..95c02b1
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1024x600.cfg
@@ -0,0 +1,35 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=984
+th=515
+
+text_x=15
+text_y=532
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1024x600.png
+silentpic=/etc/splash/sabayon/images/silent-1024x600.png
+
+
+# progress bar
+box silent noover 1 561 1023 565 #000000
+box silent inter 1 561 1 564 #3671BF
+box silent 1 561 1023 564 #3671BF
+
+
+# border of the progress bar
+box silent 1 560 1023 560 #595959
+box silent 1 565 1023 565 #595959
+box silent 1 560 1 565 #595959
+box silent 799 560 1023 565 #595959
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1024x768.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1024x768.cfg
new file mode 100644
index 0000000..705e680
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1024x768.cfg
@@ -0,0 +1,35 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=984
+th=683
+
+text_x=15
+text_y=700
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1024x768.png
+silentpic=/etc/splash/sabayon/images/silent-1024x768.png
+
+
+# progress bar
+box silent noover 1 728 1023 733 #000000
+box silent inter 1 729 1 732 #3671BF
+box silent 1 729 1023 732 #3671BF
+
+
+# border of the progress bar
+box silent 1 728 1023 728 #595959
+box silent 1 733 1023 733 #595959
+box silent 1 728 1 733 #595959
+box silent 1023 728 1023 733 #595959
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1152x864.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1152x864.cfg
new file mode 100644
index 0000000..451ccb8
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1152x864.cfg
@@ -0,0 +1,34 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1112
+th=779
+
+text_x=15
+text_y=796
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1152x864.png
+silentpic=/etc/splash/sabayon/images/silent-1152x864.png
+
+# progress bar
+box silent noover 1 824 1151 829 #000000
+box silent inter 1 825 1 828 #3671BF
+box silent 1 825 1151 828 #3671BF
+
+
+# border of the progress bar
+box silent 1 824 1151 824 #595959
+box silent 1 829 1151 829 #595959
+box silent 1 824 1 829 #595959
+box silent 1151 824 1151 829 #595959
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x1024.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x1024.cfg
new file mode 100644
index 0000000..269f430
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x1024.cfg
@@ -0,0 +1,38 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1240
+th=929
+
+text_x=15
+text_y=956
+text_size=14
+text_color=0xFFFFFF
+
+
+
+pic=/etc/splash/sabayon/images/verbose-1280x1024.png
+silentpic=/etc/splash/sabayon/images/silent-1280x1024.png
+
+
+# progress bar
+box silent noover 1 984 1279 989 #000000
+box silent inter 1 985 1 988 #3671BF
+box silent 1 985 1279 988 #3671BF
+
+
+# border of the progress bar
+box silent 1 984 1279 984 #595959
+box silent 1 989 1279 989 #595959
+box silent 1 984 1 989 #595959
+box silent 1279 984 1279 989 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x720.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x720.cfg
new file mode 100644
index 0000000..8b9f0bb
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x720.cfg
@@ -0,0 +1,33 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1240
+th=635
+
+text_x=15
+text_y=652
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1280x720.png
+silentpic=/etc/splash/sabayon/images/silent-1280x720.png
+
+# progress bar
+box silent noover 1 680 1279 685 #000000
+box silent inter 1 681 1 988 #3671BF
+box silent 1 681 1279 988 #3671BF
+
+# border of the progress bar
+box silent 1 680 1279 680 #595959
+box silent 1 685 1279 685 #595959
+box silent 1 680 1 685 #595959
+box silent 1279 680 1279 685 #595959
\ No newline at end of file
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x800.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x800.cfg
new file mode 100644
index 0000000..852c56f
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1280x800.cfg
@@ -0,0 +1,35 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+bgcolor=0
+
+tx=20
+ty=20
+tw=1240
+th=715
+
+text_x=15
+text_y=732
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1280x800.png
+silentpic=/etc/splash/sabayon/images/silent-1280x800.png
+
+
+# progress bar
+box silent noover 1 760 1279 765 #000000
+box silent inter 1 761 1 764 #3671BF
+box silent 1 761 1279 764 #3671BF
+
+
+# border of the progress bar
+box silent 1 760 1279 760 #595959
+box silent 1 765 1279 765 #595959
+box silent 1 760 1 765 #595959
+box silent 1279 760 1279 765 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1366x768.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1366x768.cfg
new file mode 100644
index 0000000..43d83a2
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1366x768.cfg
@@ -0,0 +1,33 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1326
+th=683
+
+text_x=15
+text_y=1300
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1366x768.png
+silentpic=/etc/splash/sabayon/images/silent-1366x768.png
+
+# progress bar
+box silent noover 1 728 1365 733 #000000
+box silent inter 1 729 1 732 #3671BF
+box silent 1 729 1365 732 #3671BF
+
+# border of the progress bar
+box silent 1 728 1365 728 #595959
+box silent 1 733 1365 733 #595959
+box silent 1 728 1 733 #595959
+box silent 1365 728 1365 733 #595959
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1400x1050.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1400x1050.cfg
new file mode 100644
index 0000000..835dd80
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1400x1050.cfg
@@ -0,0 +1,36 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1360
+th=950
+
+text_x=15
+text_y=982
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1400x1050.png
+silentpic=/etc/splash/sabayon/images/silent-1400x1050.png
+
+
+# progress bar
+box silent noover 1 1010 1399 1015 #000000
+box silent inter 1 1011 1 1014 #3671BF
+box silent 1 1011 1399 1014 #3671BF
+
+
+# border of the progress bar
+box silent 1 1010 1399 1010 #595959
+box silent 1 1015 1399 1015 #595959
+box silent 1 1010 1 1015 #595959
+box silent 1399 1010 1399 1015 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1440x900.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1440x900.cfg
new file mode 100644
index 0000000..8aabea8
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1440x900.cfg
@@ -0,0 +1,36 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1400
+th=800
+
+text_x=15
+text_y=832
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1440x900.png
+silentpic=/etc/splash/sabayon/images/silent-1440x900.png
+
+
+# progress bar
+box silent noover 1 860 1439 865 #000000
+box silent inter 1 861 1 864 #3671BF
+box silent 1 861 1439 864 #3671BF
+
+
+# border of the progress bar
+box silent 1 860 1439 860 #595959
+box silent 1 865 1439 865 #595959
+box silent 1 860 1 865 #595959
+box silent 1439 860 1439 865 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1600x1200.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1600x1200.cfg
new file mode 100644
index 0000000..80b7a1e
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1600x1200.cfg
@@ -0,0 +1,36 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1560
+th=1115
+
+text_x=15
+text_y=1132
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1600x1200.png
+silentpic=/etc/splash/sabayon/images/silent-1600x1200.png
+
+
+# progress bar
+box silent noover 1 1160 1599 1165 #000000
+box silent inter 1 1161 1 1164 #3671BF
+box silent 1 1161 1599 1164 #3671BF
+
+
+# border of the progress bar
+box silent 1 1160 1599 1160 #595959
+box silent 1 1165 1599 1165 #595959
+box silent 1 1160 1 1165 #595959
+box silent 1599 1160 1599 1165 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1600x900.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1600x900.cfg
new file mode 100644
index 0000000..829fb23
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1600x900.cfg
@@ -0,0 +1,33 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1560
+th=830
+
+text_x=15
+text_y=844
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1600x900.png
+silentpic=/etc/splash/sabayon/images/silent-1600x900.png
+
+# progress bar
+box silent noover 1 860 1599 865 #000000
+box silent inter 1 861 1 864 #3671BF
+box silent 1 861 1599 864 #3671BF
+
+# border of the progress bar
+box silent 1 860 1599 860 #595959
+box silent 1 865 1599 865 #595959
+box silent 1 860 1 865 #595959
+box silent 1599 860 1599 865 #595959
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1680x1050.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1680x1050.cfg
new file mode 100644
index 0000000..b6b193c
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1680x1050.cfg
@@ -0,0 +1,36 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1640
+th=965
+
+text_x=15
+text_y=982
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1680x1050.png
+silentpic=/etc/splash/sabayon/images/silent-1680x1050.png
+
+
+# progress bar
+box silent noover 1 1010 1679 1015 #000000
+box silent inter 1 1011 1 1014 #3671BF
+box silent 1 1011 1679 1014 #3671BF
+
+
+# border of the progress bar
+box silent 1 1010 1679 1010 #595959
+box silent 1 1015 1679 1015 #595959
+box silent 1 1010 1 1015 #595959
+box silent 1679 1010 1679 1015 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1920x1080.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1920x1080.cfg
new file mode 100644
index 0000000..0dcb335
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1920x1080.cfg
@@ -0,0 +1,34 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1880
+th=995
+
+text_x=15
+text_y=1012
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1920x1080.png
+silentpic=/etc/splash/sabayon/images/silent-1920x1080.png
+
+# progress bar
+box silent noover 1 1040 1919 1045 #000000
+box silent inter 1 1041 1 1044 #3671BF
+box silent 1 1041 1919 1044 #3671BF
+
+# border of the progress bar
+box silent 1 1040 1919 1040 #595959
+box silent 1 1045 1919 1045 #595959
+box silent 1 1040 1 1045 #595959
+box silent 1919 1040 1919 1045 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/1920x1200.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1920x1200.cfg
new file mode 100644
index 0000000..722785c
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/1920x1200.cfg
@@ -0,0 +1,36 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=1880
+th=1115
+
+text_x=15
+text_y=1132
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-1920x1200.png
+silentpic=/etc/splash/sabayon/images/silent-1920x1200.png
+
+
+# progress bar
+box silent noover 1 1160 1919 1165 #000000
+box silent inter 1 1161 1 1164 #3671BF
+box silent 1 1161 1919 1164 #3671BF
+
+
+# border of the progress bar
+box silent 1 1160 1919 1160 #595959
+box silent 1 1165 1919 1165 #595959
+box silent 1 1160 1 1165 #595959
+box silent 1919 1160 1919 1165 #595959
+
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/640x480.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/640x480.cfg
new file mode 100644
index 0000000..06fcea1
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/640x480.cfg
@@ -0,0 +1,35 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=600
+th=395
+
+text_x=15
+text_y=425
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-640x480.png
+silentpic=/etc/splash/sabayon/images/silent-640x480.png
+
+
+# progress bar
+box silent noover 1 440 640 445 #000000
+box silent inter 1 441 1 444 #3671BF
+box silent 1 441 640 444 #3671BF
+
+
+# border of the progress bar
+box silent 1 440 640 440 #595959
+box silent 1 445 640 445 #595959
+box silent 1 440 1 445 #595959
+box silent 640 440 640 445 #595959
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/800x600.cfg b/releases/12/sabayon-artwork-core/fbsplash/sabayon/800x600.cfg
new file mode 100644
index 0000000..fbd4eb4
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/800x600.cfg
@@ -0,0 +1,35 @@
+# Copyright 2004-2011 Sabayon Linux
+# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
+#
+# Theme design and graphics by
+# Ian Whyman
+#
+text_font=/etc/splash/sabayon/luxisri.ttf
+
+bgcolor=0
+
+tx=20
+ty=20
+tw=760
+th=515
+
+text_x=15
+text_y=532
+text_size=14
+text_color=0xFFFFFF
+
+pic=/etc/splash/sabayon/images/verbose-800x600.png
+silentpic=/etc/splash/sabayon/images/silent-800x600.png
+
+
+# progress bar
+box silent noover 1 560 799 565 #000000
+box silent inter 1 561 1 564 #3671BF
+box silent 1 561 799 564 #3671BF
+
+
+# border of the progress bar
+box silent 1 560 799 560 #595959
+box silent 1 565 799 565 #595959
+box silent 1 560 1 565 #595959
+box silent 799 560 799 565 #595959
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/CREDITS b/releases/12/sabayon-artwork-core/fbsplash/sabayon/CREDITS
new file mode 100644
index 0000000..b702575
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/CREDITS
@@ -0,0 +1,10 @@
+Sabayon FBSplash
+
+Author: Ian Whyman (http://v00d00.net)
+Homepage: http://www.sabayonlinux.org
+Email: ian.whyman@sabayonlinux.org
+
+Based on Natural_Gentoo
+
+Author: jirityr (http://kde-look.org/usermanager/search.php?username=jirityr)
+KDELook: http://kde-look.org/content/show.php/Natural+Gentoo?content=49074
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1024x600.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1024x600.png
new file mode 100644
index 0000000..852cbc5
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1024x600.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1024x768.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1024x768.png
new file mode 100644
index 0000000..bc60288
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1024x768.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1152x864.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1152x864.png
new file mode 100644
index 0000000..4ebf785
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1152x864.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x1024.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x1024.png
new file mode 100644
index 0000000..039e8a0
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x1024.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x720.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x720.png
new file mode 100644
index 0000000..53938c7
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x720.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x800.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x800.png
new file mode 100644
index 0000000..69b43a8
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1280x800.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1366x768.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1366x768.png
new file mode 100644
index 0000000..450118a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1366x768.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1400x1050.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1400x1050.png
new file mode 100644
index 0000000..b69342b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1400x1050.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1440x900.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1440x900.png
new file mode 100644
index 0000000..f91e45e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1440x900.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1600x1200.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1600x1200.png
new file mode 100644
index 0000000..6e3a6ee
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1600x1200.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1600x900.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1600x900.png
new file mode 100644
index 0000000..fb92c38
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1600x900.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1680x1050.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1680x1050.png
new file mode 100644
index 0000000..4463997
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1680x1050.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1920x1080.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1920x1080.png
new file mode 100644
index 0000000..4701625
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1920x1080.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1920x1200.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1920x1200.png
new file mode 100644
index 0000000..7d2a70f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-1920x1200.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-640x480.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-640x480.png
new file mode 100644
index 0000000..45900d6
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-640x480.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-800x600.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-800x600.png
new file mode 100644
index 0000000..aa6a20a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/silent-800x600.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1024x600.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1024x600.png
new file mode 100644
index 0000000..a780dc4
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1024x600.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1024x768.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1024x768.png
new file mode 100644
index 0000000..e28d5eb
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1024x768.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1152x864.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1152x864.png
new file mode 100644
index 0000000..cbebc2f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1152x864.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x1024.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x1024.png
new file mode 100644
index 0000000..08e8ff3
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x1024.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x720.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x720.png
new file mode 100644
index 0000000..cc23163
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x720.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x800.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x800.png
new file mode 100644
index 0000000..83f674a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1280x800.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1366x768.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1366x768.png
new file mode 100644
index 0000000..3660d6b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1366x768.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1400x1050.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1400x1050.png
new file mode 100644
index 0000000..30b1c3f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1400x1050.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1440x900.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1440x900.png
new file mode 100644
index 0000000..89a9941
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1440x900.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1600x1200.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1600x1200.png
new file mode 100644
index 0000000..afb6425
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1600x1200.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1600x900.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1600x900.png
new file mode 100644
index 0000000..a2ac769
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1600x900.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1680x1050.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1680x1050.png
new file mode 100644
index 0000000..d51c838
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1680x1050.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1920x1080.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1920x1080.png
new file mode 100644
index 0000000..32f1e19
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1920x1080.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1920x1200.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1920x1200.png
new file mode 100644
index 0000000..099c910
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-1920x1200.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-640x480.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-640x480.png
new file mode 100644
index 0000000..9ce315c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-640x480.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-800x600.png b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-800x600.png
new file mode 100644
index 0000000..042fd9a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/images/verbose-800x600.png differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/luxisri.ttf b/releases/12/sabayon-artwork-core/fbsplash/sabayon/luxisri.ttf
new file mode 100644
index 0000000..8a3b012
Binary files /dev/null and b/releases/12/sabayon-artwork-core/fbsplash/sabayon/luxisri.ttf differ
diff --git a/releases/12/sabayon-artwork-core/fbsplash/sabayon/metadata.xml b/releases/12/sabayon-artwork-core/fbsplash/sabayon/metadata.xml
new file mode 100644
index 0000000..50034c4
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/fbsplash/sabayon/metadata.xml
@@ -0,0 +1,11 @@
+
+ sabayon
+ 6
+
+ Ian Whyman
+ ian.whyman@sabayon.org
+
+ Offical Sabayon Linux 6 FBsplash theme
+ CC BY-SA 3.0
+ http://www.sabayon.org/
+
\ No newline at end of file
diff --git a/releases/12/sabayon-artwork-core/make_wallpaper.sh b/releases/12/sabayon-artwork-core/make_wallpaper.sh
new file mode 100755
index 0000000..9ec09b1
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/make_wallpaper.sh
@@ -0,0 +1,75 @@
+#!/bin/bash
+
+SILENT_SVG_16_9="../_devel/fbsplash_silent_16_9.svg"
+VERBOSE_SVG_16_9="../_devel/fbsplash_verbose_16_9.svg"
+SILENT_SVG_4_3="../_devel/fbsplash_silent_4_3.svg"
+VERBOSE_SVG_4_3="../_devel/fbsplash_verbose_4_3.svg"
+
+RESOLUTION_4_3="
+640x480
+800x600
+1024x768
+1152x864
+1280x1024
+1400x1050
+1600x1200
+"
+RESOLUTION_16_9="
+1024x600
+1280x720
+1280x800
+1366x768
+1440x900
+1600x900
+1680x1050
+1920x1080
+1920x1200
+"
+
+RASTER_EXT=".png"
+VERBOSE_PREFIX="verbose-"
+SILENT_PREFIX="silent-"
+
+THEME_DIR="fbsplash/sabayon/images"
+
+for pfx in ${VERBOSE_PREFIX} ${SILENT_PREFIX}; do
+ for res in ${RESOLUTION_4_3}; do
+ if [ "${pfx}" = "${VERBOSE_PREFIX}" ]; then
+ src_svg="${VERBOSE_SVG_4_3}"
+ else
+ src_svg="${SILENT_SVG_4_3}"
+ fi
+ echo "Doing 4:3 -> ${pfx}${res}"
+ inkscape -z --export-png="${THEME_DIR}/${pfx}${res}${RASTER_EXT}" \
+ --export-area-page \
+ --export-width="$(echo ${res} | cut -dx -f 1)" \
+ --export-height="$(echo ${res} | cut -dx -f 2)" \
+ "${src_svg}" || exit 1
+ done
+ for res in ${RESOLUTION_16_9}; do
+ if [ "${pfx}" = "${VERBOSE_PREFIX}" ]; then
+ src_svg="${VERBOSE_SVG_16_9}"
+ else
+ src_svg="${SILENT_SVG_16_9}"
+ fi
+ echo "Doing 16:9 -> ${pfx}${res}"
+ inkscape -z --export-png="${THEME_DIR}/${pfx}${res}${RASTER_EXT}" \
+ --export-area-page \
+ --export-width="$(echo ${res} | cut -dx -f 1)" \
+ --export-height="$(echo ${res} | cut -dx -f 2)" \
+ "${src_svg}" || exit 1
+ done
+done
+
+# Wallpapers
+cp "${THEME_DIR}/silent-1920x1200.png" background/sabayonlinux.png
+convert background/sabayonlinux.png -quality 94 background/sabayonlinux.jpg || exit 1
+
+# KGDM
+inkscape -z --export-png="background/kgdm.png" \
+ --export-area-page \
+ --export-width="1920" \
+ --export-height="1200" \
+ "../_devel/wallpaper_final_kgdm.svg" || exit 1
+cp background/kgdm.png plymouth/sabayon/wallpaper.png || exit 1
+convert background/kgdm.png -quality 94 background/kgdm.jpg || exit 1
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/00008160000006810000408080010102 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/00008160000006810000408080010102
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/00008160000006810000408080010102 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/028006030e0e7ebffc7f7070c0600140 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/028006030e0e7ebffc7f7070c0600140
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/028006030e0e7ebffc7f7070c0600140 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/03b6e0fcb3499374a867c041f52298f0 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/03b6e0fcb3499374a867c041f52298f0
new file mode 100644
index 0000000..333f10e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/03b6e0fcb3499374a867c041f52298f0 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/08e8e1c95fe2fc01f976f1e063a24ccd b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/08e8e1c95fe2fc01f976f1e063a24ccd
new file mode 100644
index 0000000..a27ba33
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/08e8e1c95fe2fc01f976f1e063a24ccd differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/14fef782d02440884392942c11205230 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/14fef782d02440884392942c11205230
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/14fef782d02440884392942c11205230 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/2870a09082c103050810ffdffffe0204 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/2870a09082c103050810ffdffffe0204
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/2870a09082c103050810ffdffffe0204 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/3085a0e285430894940527032f8b26df b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/3085a0e285430894940527032f8b26df
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/3085a0e285430894940527032f8b26df differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/3ecb610c1bf2410f44200f48c40d3599 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/3ecb610c1bf2410f44200f48c40d3599
new file mode 100644
index 0000000..a27ba33
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/3ecb610c1bf2410f44200f48c40d3599 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/4498f0e0c1937ffe01fd06f973665830 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/4498f0e0c1937ffe01fd06f973665830
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/4498f0e0c1937ffe01fd06f973665830 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408
new file mode 100644
index 0000000..98e9ebd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/640fb0e74195791501fd1ed57b41487f b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/640fb0e74195791501fd1ed57b41487f
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/640fb0e74195791501fd1ed57b41487f differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/9081237383d90e509aa00f00170e968f b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/9081237383d90e509aa00f00170e968f
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/9081237383d90e509aa00f00170e968f differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/9d800788f1b08800ae810202380a0822 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/9d800788f1b08800ae810202380a0822
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/9d800788f1b08800ae810202380a0822 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/X_cursor b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/X_cursor
new file mode 100644
index 0000000..333f10e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/X_cursor differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/arrow
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/base_arrow_down b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/base_arrow_down
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/base_arrow_down differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/base_arrow_up b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/base_arrow_up
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/base_arrow_up differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/based_arrow_down b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/based_arrow_down
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/based_arrow_down differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/based_arrow_up b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/based_arrow_up
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/based_arrow_up differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bd_double_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bd_double_arrow
new file mode 100644
index 0000000..5bc1e93
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bd_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_left_corner b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_left_corner
new file mode 100644
index 0000000..377718f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_left_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_right_corner b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_right_corner
new file mode 100644
index 0000000..5bc1e93
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_right_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_side b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_side
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/bottom_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/c7088f0f3e6c8088236ef8e1e3e70000 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/c7088f0f3e6c8088236ef8e1e3e70000
new file mode 100644
index 0000000..5bc1e93
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/c7088f0f3e6c8088236ef8e1e3e70000 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/center_ptr b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/center_ptr
new file mode 100644
index 0000000..feabf2e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/center_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/cross b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/cross
new file mode 100644
index 0000000..004781f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/cross differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/cross_reverse b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/cross_reverse
new file mode 100644
index 0000000..004781f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/cross_reverse differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/crossed_circle b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/crossed_circle
new file mode 100644
index 0000000..333f10e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/crossed_circle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/crosshair b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/crosshair
new file mode 100644
index 0000000..004781f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/crosshair differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/d9ce0ab605698f320427677b458ad60b b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/d9ce0ab605698f320427677b458ad60b
new file mode 100644
index 0000000..98e9ebd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/d9ce0ab605698f320427677b458ad60b differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/double_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/double_arrow
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/draft_large b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/draft_large
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/draft_large differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/draft_small b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/draft_small
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/draft_small differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/e29285e634086352946a0e7090d73106 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/e29285e634086352946a0e7090d73106
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/e29285e634086352946a0e7090d73106 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fcf1c3c7cd4491d801f1e1c78f100000 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fcf1c3c7cd4491d801f1e1c78f100000
new file mode 100644
index 0000000..377718f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fcf1c3c7cd4491d801f1e1c78f100000 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fd_double_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fd_double_arrow
new file mode 100644
index 0000000..377718f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fd_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fleur b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fleur
new file mode 100644
index 0000000..f8d4302
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/fleur differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/h_double_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/h_double_arrow
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/h_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand1 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand1
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand1 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand2 b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand2
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/hand2 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_ptr b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_ptr
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_ptr_watch b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_ptr_watch
new file mode 100644
index 0000000..a27ba33
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_ptr_watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_side b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_side
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/left_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/link b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/link
new file mode 100644
index 0000000..ca25d49
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/link differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/ll_angle b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/ll_angle
new file mode 100644
index 0000000..377718f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/ll_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/lr_angle b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/lr_angle
new file mode 100644
index 0000000..5bc1e93
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/lr_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/move b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/move
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/move differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/plus b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/plus
new file mode 100644
index 0000000..f8d4302
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/plus differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/question_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/question_arrow
new file mode 100644
index 0000000..98e9ebd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/question_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/right_ptr b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/right_ptr
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/right_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/right_side b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/right_side
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/right_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_down_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_down_arrow
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_down_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_h_double_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_h_double_arrow
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_h_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_left_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_left_arrow
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_left_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_right_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_right_arrow
new file mode 100644
index 0000000..7996056
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_right_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_up_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_up_arrow
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_up_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_v_double_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_v_double_arrow
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/sb_v_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/tcross b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/tcross
new file mode 100644
index 0000000..004781f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/tcross differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_left_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_left_arrow
new file mode 100644
index 0000000..d4f0084
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_left_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_left_corner b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_left_corner
new file mode 100644
index 0000000..5bc1e93
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_left_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_right_corner b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_right_corner
new file mode 100644
index 0000000..377718f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_right_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_side b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_side
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/top_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/v_double_arrow b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/v_double_arrow
new file mode 100644
index 0000000..0ae3d56
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/v_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/watch b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/watch
new file mode 100644
index 0000000..dd04567
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/xterm b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/xterm
new file mode 100644
index 0000000..fdd1061
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Grounation/cursors/xterm differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Grounation/index.theme b/releases/12/sabayon-artwork-core/mouse/Grounation/index.theme
new file mode 100644
index 0000000..9b6dfae
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/mouse/Grounation/index.theme
@@ -0,0 +1,2 @@
+[Icon Theme]
+Inherits=Grounation
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/00008160000006810000408080010102 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/00008160000006810000408080010102
new file mode 100644
index 0000000..520a6b4
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/00008160000006810000408080010102 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/028006030e0e7ebffc7f7070c0600140 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/028006030e0e7ebffc7f7070c0600140
new file mode 100644
index 0000000..19ae267
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/028006030e0e7ebffc7f7070c0600140 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/03b6e0fcb3499374a867c041f52298f0 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/03b6e0fcb3499374a867c041f52298f0
new file mode 100644
index 0000000..cee079f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/03b6e0fcb3499374a867c041f52298f0 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/0876e1c15ff2fc01f906f1c363074c0f b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/0876e1c15ff2fc01f906f1c363074c0f
new file mode 100644
index 0000000..3f28f6b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/0876e1c15ff2fc01f906f1c363074c0f differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/08e8e1c95fe2fc01f976f1e063a24ccd b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/08e8e1c95fe2fc01f976f1e063a24ccd
new file mode 100644
index 0000000..1e7ccec
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/08e8e1c95fe2fc01f976f1e063a24ccd differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/08ffe1cb5fe6fc01f906f1c063814ccf b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/08ffe1cb5fe6fc01f906f1c063814ccf
new file mode 100644
index 0000000..c5d6d9c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/08ffe1cb5fe6fc01f906f1c063814ccf differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/1081e37283d90000800003c07f3ef6bf b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/1081e37283d90000800003c07f3ef6bf
new file mode 100644
index 0000000..c5d6d9c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/1081e37283d90000800003c07f3ef6bf differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/14fef782d02440884392942c11205230 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/14fef782d02440884392942c11205230
new file mode 100644
index 0000000..ffc4e30
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/14fef782d02440884392942c11205230 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/208530c400c041818281048008011002 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/208530c400c041818281048008011002
new file mode 100644
index 0000000..eed29bc
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/208530c400c041818281048008011002 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/2870a09082c103050810ffdffffe0204 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/2870a09082c103050810ffdffffe0204
new file mode 100644
index 0000000..01ffbaf
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/2870a09082c103050810ffdffffe0204 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/3085a0e285430894940527032f8b26df b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/3085a0e285430894940527032f8b26df
new file mode 100644
index 0000000..3f28f6b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/3085a0e285430894940527032f8b26df differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/3ecb610c1bf2410f44200f48c40d3599 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/3ecb610c1bf2410f44200f48c40d3599
new file mode 100644
index 0000000..1e7ccec
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/3ecb610c1bf2410f44200f48c40d3599 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/5aca4d189052212118709018842178c0 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/5aca4d189052212118709018842178c0
new file mode 100644
index 0000000..eff1604
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/5aca4d189052212118709018842178c0 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408
new file mode 100644
index 0000000..5490192
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/6407b0e94181790501fd1e167b474872 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/6407b0e94181790501fd1e167b474872
new file mode 100644
index 0000000..c5d6d9c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/6407b0e94181790501fd1e167b474872 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/640fb0e74195791501fd1ed57b41487f b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/640fb0e74195791501fd1ed57b41487f
new file mode 100644
index 0000000..3f28f6b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/640fb0e74195791501fd1ed57b41487f differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/9d800788f1b08800ae810202380a0822 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/9d800788f1b08800ae810202380a0822
new file mode 100644
index 0000000..eff1604
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/9d800788f1b08800ae810202380a0822 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HDoubleArrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HDoubleArrow
new file mode 100644
index 0000000..ffc4e30
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HDoubleArrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HandGrab b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HandGrab
new file mode 100644
index 0000000..eff1604
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HandGrab differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HandSqueezed b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HandSqueezed
new file mode 100644
index 0000000..eed29bc
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/HandSqueezed differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/VDoubleArrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/VDoubleArrow
new file mode 100644
index 0000000..01ffbaf
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/VDoubleArrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/X_cursor b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/X_cursor
new file mode 100644
index 0000000..775d461
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/X_cursor differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/arrow
new file mode 100644
index 0000000..1249499
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/base_arrow_down b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/base_arrow_down
new file mode 100644
index 0000000..3b2b807
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/base_arrow_down differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/base_arrow_up b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/base_arrow_up
new file mode 100644
index 0000000..b0586e6
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/base_arrow_up differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/based_arrow_down b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/based_arrow_down
new file mode 100644
index 0000000..3b2b807
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/based_arrow_down differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/based_arrow_up b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/based_arrow_up
new file mode 100644
index 0000000..b0586e6
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/based_arrow_up differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bd_double_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bd_double_arrow
new file mode 100644
index 0000000..88dd4d3
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bd_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_left_corner b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_left_corner
new file mode 100644
index 0000000..8412e31
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_left_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_right_corner b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_right_corner
new file mode 100644
index 0000000..88dd4d3
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_right_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_side b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_side
new file mode 100644
index 0000000..520a6b4
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/bottom_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/c7088f0f3e6c8088236ef8e1e3e70000 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/c7088f0f3e6c8088236ef8e1e3e70000
new file mode 100644
index 0000000..88dd4d3
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/c7088f0f3e6c8088236ef8e1e3e70000 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/center_ptr b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/center_ptr
new file mode 100644
index 0000000..619fee0
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/center_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/circle b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/circle
new file mode 100644
index 0000000..7a5a4c5
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/circle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/copy b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/copy
new file mode 100644
index 0000000..c5d6d9c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/copy differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/cross b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/cross
new file mode 100644
index 0000000..6f7a53c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/cross differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/cross_reverse b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/cross_reverse
new file mode 100644
index 0000000..6f7a53c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/cross_reverse differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/crossed_circle b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/crossed_circle
new file mode 100644
index 0000000..cee079f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/crossed_circle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/crosshair b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/crosshair
new file mode 100644
index 0000000..af21b41
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/crosshair differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/d9ce0ab605698f320427677b458ad60b b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/d9ce0ab605698f320427677b458ad60b
new file mode 100644
index 0000000..5490192
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/d9ce0ab605698f320427677b458ad60b differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-ask b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-ask
new file mode 100644
index 0000000..02d96eb
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-ask differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-copy b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-copy
new file mode 100644
index 0000000..b9d489b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-copy differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-link b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-link
new file mode 100644
index 0000000..509641f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-link differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-move b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-move
new file mode 100644
index 0000000..eed29bc
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-move differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-none b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-none
new file mode 100644
index 0000000..cee079f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/dnd-none differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/double_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/double_arrow
new file mode 100644
index 0000000..520a6b4
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/draft_large b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/draft_large
new file mode 100644
index 0000000..1249499
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/draft_large differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/draft_small b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/draft_small
new file mode 100644
index 0000000..1249499
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/draft_small differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/e29285e634086352946a0e7090d73106 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/e29285e634086352946a0e7090d73106
new file mode 100644
index 0000000..d7e6798
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/e29285e634086352946a0e7090d73106 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/f41c0e382c94c0958e07017e42b00462 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/f41c0e382c94c0958e07017e42b00462
new file mode 100644
index 0000000..1d105ff
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/f41c0e382c94c0958e07017e42b00462 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/f41c0e382c97c0938e07017e42800402 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/f41c0e382c97c0938e07017e42800402
new file mode 100644
index 0000000..115fd12
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/f41c0e382c97c0938e07017e42800402 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fcf1c3c7cd4491d801f1e1c78f100000 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fcf1c3c7cd4491d801f1e1c78f100000
new file mode 100644
index 0000000..8412e31
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fcf1c3c7cd4491d801f1e1c78f100000 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fd_double_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fd_double_arrow
new file mode 100644
index 0000000..8412e31
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fd_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fleur b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fleur
new file mode 100644
index 0000000..be80253
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/fleur differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/h_double_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/h_double_arrow
new file mode 100644
index 0000000..ffc4e30
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/h_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand
new file mode 100644
index 0000000..d7e6798
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand1 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand1
new file mode 100644
index 0000000..d7e6798
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand1 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand2 b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand2
new file mode 100644
index 0000000..d7e6798
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/hand2 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_ptr b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_ptr
new file mode 100644
index 0000000..1249499
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_ptr_watch b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_ptr_watch
new file mode 100644
index 0000000..1e7ccec
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_ptr_watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_side b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_side
new file mode 100644
index 0000000..19ae267
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/left_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/link b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/link
new file mode 100644
index 0000000..3f28f6b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/link differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ll_angle b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ll_angle
new file mode 100644
index 0000000..021809c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ll_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/lr_angle b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/lr_angle
new file mode 100644
index 0000000..d8f96e8
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/lr_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/move b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/move
new file mode 100644
index 0000000..eed29bc
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/move differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/pencil b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/pencil
new file mode 100644
index 0000000..46cfa83
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/pencil differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/plus b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/plus
new file mode 100644
index 0000000..be80253
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/plus differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/question_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/question_arrow
new file mode 100644
index 0000000..5490192
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/question_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/right_ptr b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/right_ptr
new file mode 100644
index 0000000..bf3d89d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/right_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/right_side b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/right_side
new file mode 100644
index 0000000..19ae267
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/right_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_down_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_down_arrow
new file mode 100644
index 0000000..26b526f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_down_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_h_double_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_h_double_arrow
new file mode 100644
index 0000000..ffc4e30
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_h_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_left_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_left_arrow
new file mode 100644
index 0000000..a863bbd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_left_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_right_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_right_arrow
new file mode 100644
index 0000000..8bc2bb1
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_right_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_up_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_up_arrow
new file mode 100644
index 0000000..619fee0
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_up_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_v_double_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_v_double_arrow
new file mode 100644
index 0000000..01ffbaf
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/sb_v_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/tcross b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/tcross
new file mode 100644
index 0000000..6f7a53c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/tcross differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_left_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_left_arrow
new file mode 100644
index 0000000..1249499
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_left_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_left_corner b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_left_corner
new file mode 100644
index 0000000..88dd4d3
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_left_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_right_corner b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_right_corner
new file mode 100644
index 0000000..8412e31
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_right_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_side b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_side
new file mode 100644
index 0000000..520a6b4
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/top_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ul_angle b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ul_angle
new file mode 100644
index 0000000..600ffbb
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ul_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ur_angle b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ur_angle
new file mode 100644
index 0000000..b07066e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/ur_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/v_double_arrow b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/v_double_arrow
new file mode 100644
index 0000000..01ffbaf
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/v_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/watch b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/watch
new file mode 100644
index 0000000..f215483
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/xterm b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/xterm
new file mode 100644
index 0000000..f168458
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/xterm differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/zoomIn b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/zoomIn
new file mode 100644
index 0000000..1d105ff
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/zoomIn differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/zoomOut b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/zoomOut
new file mode 100644
index 0000000..115fd12
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/Obsidian/cursors/zoomOut differ
diff --git a/releases/12/sabayon-artwork-core/mouse/Obsidian/index.theme b/releases/12/sabayon-artwork-core/mouse/Obsidian/index.theme
new file mode 100644
index 0000000..9895a31
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/mouse/Obsidian/index.theme
@@ -0,0 +1,4 @@
+[Icon Theme]
+Name=Obsidian
+Comment=A shiny black cursor theme
+Example=left_ptr
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/00008160000006810000408080010102 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/00008160000006810000408080010102
new file mode 100644
index 0000000..5c84338
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/00008160000006810000408080010102 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/028006030e0e7ebffc7f7070c0600140 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/028006030e0e7ebffc7f7070c0600140
new file mode 100644
index 0000000..4b8c0f1
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/028006030e0e7ebffc7f7070c0600140 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/03b6e0fcb3499374a867c041f52298f0 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/03b6e0fcb3499374a867c041f52298f0
new file mode 100644
index 0000000..5dcba86
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/03b6e0fcb3499374a867c041f52298f0 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/0876e1c15ff2fc01f906f1c363074c0f b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/0876e1c15ff2fc01f906f1c363074c0f
new file mode 100644
index 0000000..45f3a8f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/0876e1c15ff2fc01f906f1c363074c0f differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/08e8e1c95fe2fc01f976f1e063a24ccd b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/08e8e1c95fe2fc01f976f1e063a24ccd
new file mode 100644
index 0000000..0154a5a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/08e8e1c95fe2fc01f976f1e063a24ccd differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/08ffe1cb5fe6fc01f906f1c063814ccf b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/08ffe1cb5fe6fc01f906f1c063814ccf
new file mode 100644
index 0000000..42d8fff
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/08ffe1cb5fe6fc01f906f1c063814ccf differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/1081e37283d90000800003c07f3ef6bf b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/1081e37283d90000800003c07f3ef6bf
new file mode 100644
index 0000000..42d8fff
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/1081e37283d90000800003c07f3ef6bf differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/14fef782d02440884392942c11205230 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/14fef782d02440884392942c11205230
new file mode 100644
index 0000000..60ea7cd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/14fef782d02440884392942c11205230 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/208530c400c041818281048008011002 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/208530c400c041818281048008011002
new file mode 100644
index 0000000..2e6bef1
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/208530c400c041818281048008011002 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/2870a09082c103050810ffdffffe0204 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/2870a09082c103050810ffdffffe0204
new file mode 100644
index 0000000..36a79aa
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/2870a09082c103050810ffdffffe0204 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/3085a0e285430894940527032f8b26df b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/3085a0e285430894940527032f8b26df
new file mode 100644
index 0000000..45f3a8f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/3085a0e285430894940527032f8b26df differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/3ecb610c1bf2410f44200f48c40d3599 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/3ecb610c1bf2410f44200f48c40d3599
new file mode 100644
index 0000000..0154a5a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/3ecb610c1bf2410f44200f48c40d3599 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/4498f0e0c1937ffe01fd06f973665830 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/4498f0e0c1937ffe01fd06f973665830
new file mode 100644
index 0000000..803238d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/4498f0e0c1937ffe01fd06f973665830 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/5aca4d189052212118709018842178c0 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/5aca4d189052212118709018842178c0
new file mode 100644
index 0000000..aee725b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/5aca4d189052212118709018842178c0 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408
new file mode 100644
index 0000000..91d95f7
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/6407b0e94181790501fd1e167b474872 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/6407b0e94181790501fd1e167b474872
new file mode 100644
index 0000000..42d8fff
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/6407b0e94181790501fd1e167b474872 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/640fb0e74195791501fd1ed57b41487f b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/640fb0e74195791501fd1ed57b41487f
new file mode 100644
index 0000000..45f3a8f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/640fb0e74195791501fd1ed57b41487f differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/9081237383d90e509aa00f00170e968f b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/9081237383d90e509aa00f00170e968f
new file mode 100644
index 0000000..803238d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/9081237383d90e509aa00f00170e968f differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/9d800788f1b08800ae810202380a0822 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/9d800788f1b08800ae810202380a0822
new file mode 100644
index 0000000..aee725b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/9d800788f1b08800ae810202380a0822 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HDoubleArrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HDoubleArrow
new file mode 100644
index 0000000..60ea7cd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HDoubleArrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HandGrab b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HandGrab
new file mode 100644
index 0000000..aee725b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HandGrab differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HandSqueezed b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HandSqueezed
new file mode 100644
index 0000000..2e6bef1
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/HandSqueezed differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/VDoubleArrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/VDoubleArrow
new file mode 100644
index 0000000..36a79aa
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/VDoubleArrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/X_cursor b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/X_cursor
new file mode 100644
index 0000000..9d60776
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/X_cursor differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/arrow
new file mode 100644
index 0000000..d565a82
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/base_arrow_down b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/base_arrow_down
new file mode 100644
index 0000000..df5819b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/base_arrow_down differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/base_arrow_up b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/base_arrow_up
new file mode 100644
index 0000000..318108d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/base_arrow_up differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/based_arrow_down b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/based_arrow_down
new file mode 100644
index 0000000..df5819b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/based_arrow_down differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/based_arrow_up b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/based_arrow_up
new file mode 100644
index 0000000..318108d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/based_arrow_up differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bd_double_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bd_double_arrow
new file mode 100644
index 0000000..6cf1531
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bd_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_left_corner b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_left_corner
new file mode 100644
index 0000000..3211b77
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_left_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_right_corner b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_right_corner
new file mode 100644
index 0000000..6cf1531
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_right_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_side b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_side
new file mode 100644
index 0000000..5c84338
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/bottom_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/c7088f0f3e6c8088236ef8e1e3e70000 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/c7088f0f3e6c8088236ef8e1e3e70000
new file mode 100644
index 0000000..6cf1531
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/c7088f0f3e6c8088236ef8e1e3e70000 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/center_ptr b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/center_ptr
new file mode 100644
index 0000000..a4b1c3a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/center_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/circle b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/circle
new file mode 100644
index 0000000..6ace7ac
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/circle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/copy b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/copy
new file mode 100644
index 0000000..42d8fff
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/copy differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/cross b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/cross
new file mode 100644
index 0000000..4e6a5a2
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/cross differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/cross_reverse b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/cross_reverse
new file mode 100644
index 0000000..4e6a5a2
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/cross_reverse differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/crossed_circle b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/crossed_circle
new file mode 100644
index 0000000..5dcba86
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/crossed_circle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/crosshair b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/crosshair
new file mode 100644
index 0000000..7c33a20
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/crosshair differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/d9ce0ab605698f320427677b458ad60b b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/d9ce0ab605698f320427677b458ad60b
new file mode 100644
index 0000000..91d95f7
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/d9ce0ab605698f320427677b458ad60b differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-ask b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-ask
new file mode 100644
index 0000000..11c102d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-ask differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-copy b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-copy
new file mode 100644
index 0000000..3dfbce3
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-copy differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-link b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-link
new file mode 100644
index 0000000..f1fec24
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-link differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-move b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-move
new file mode 100644
index 0000000..c848052
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-move differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-none b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-none
new file mode 100644
index 0000000..5dcba86
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/dnd-none differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/double_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/double_arrow
new file mode 100644
index 0000000..5c84338
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/draft_large b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/draft_large
new file mode 100644
index 0000000..d565a82
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/draft_large differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/draft_small b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/draft_small
new file mode 100644
index 0000000..d565a82
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/draft_small differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/e29285e634086352946a0e7090d73106 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/e29285e634086352946a0e7090d73106
new file mode 100644
index 0000000..ad38a48
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/e29285e634086352946a0e7090d73106 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/f41c0e382c94c0958e07017e42b00462 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/f41c0e382c94c0958e07017e42b00462
new file mode 100644
index 0000000..3d34a2b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/f41c0e382c94c0958e07017e42b00462 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/f41c0e382c97c0938e07017e42800402 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/f41c0e382c97c0938e07017e42800402
new file mode 100644
index 0000000..bf9cec9
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/f41c0e382c97c0938e07017e42800402 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fcf1c3c7cd4491d801f1e1c78f100000 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fcf1c3c7cd4491d801f1e1c78f100000
new file mode 100644
index 0000000..3211b77
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fcf1c3c7cd4491d801f1e1c78f100000 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fd_double_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fd_double_arrow
new file mode 100644
index 0000000..3211b77
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fd_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fleur b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fleur
new file mode 100644
index 0000000..75aa141
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/fleur differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/h_double_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/h_double_arrow
new file mode 100644
index 0000000..60ea7cd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/h_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand
new file mode 100644
index 0000000..ad38a48
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand1 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand1
new file mode 100644
index 0000000..ad38a48
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand1 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand2 b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand2
new file mode 100644
index 0000000..ad38a48
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/hand2 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_ptr b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_ptr
new file mode 100644
index 0000000..d565a82
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_ptr_watch b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_ptr_watch
new file mode 100644
index 0000000..0154a5a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_ptr_watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_side b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_side
new file mode 100644
index 0000000..4b8c0f1
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/left_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/link b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/link
new file mode 100644
index 0000000..45f3a8f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/link differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ll_angle b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ll_angle
new file mode 100644
index 0000000..958b9c5
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ll_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/lr_angle b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/lr_angle
new file mode 100644
index 0000000..85727e0
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/lr_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/move b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/move
new file mode 100644
index 0000000..803238d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/move differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/pencil b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/pencil
new file mode 100644
index 0000000..cde80f9
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/pencil differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/plus b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/plus
new file mode 100644
index 0000000..803238d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/plus differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/question_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/question_arrow
new file mode 100644
index 0000000..91d95f7
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/question_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/right_ptr b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/right_ptr
new file mode 100644
index 0000000..c9fac79
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/right_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/right_side b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/right_side
new file mode 100644
index 0000000..4b8c0f1
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/right_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_down_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_down_arrow
new file mode 100644
index 0000000..9da1b50
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_down_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_h_double_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_h_double_arrow
new file mode 100644
index 0000000..60ea7cd
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_h_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_left_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_left_arrow
new file mode 100644
index 0000000..77ef451
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_left_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_right_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_right_arrow
new file mode 100644
index 0000000..756b86e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_right_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_up_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_up_arrow
new file mode 100644
index 0000000..a4b1c3a
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_up_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_v_double_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_v_double_arrow
new file mode 100644
index 0000000..36a79aa
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/sb_v_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/tcross b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/tcross
new file mode 100644
index 0000000..4e6a5a2
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/tcross differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_left_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_left_arrow
new file mode 100644
index 0000000..d565a82
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_left_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_left_corner b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_left_corner
new file mode 100644
index 0000000..6cf1531
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_left_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_right_corner b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_right_corner
new file mode 100644
index 0000000..3211b77
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_right_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_side b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_side
new file mode 100644
index 0000000..5c84338
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/top_side differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ul_angle b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ul_angle
new file mode 100644
index 0000000..c848052
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ul_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ur_angle b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ur_angle
new file mode 100644
index 0000000..093b255
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/ur_angle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/v_double_arrow b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/v_double_arrow
new file mode 100644
index 0000000..36a79aa
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/v_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/watch b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/watch
new file mode 100644
index 0000000..a3af47b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/xterm b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/xterm
new file mode 100644
index 0000000..294b582
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/xterm differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/zoomIn b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/zoomIn
new file mode 100644
index 0000000..3d34a2b
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/zoomIn differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/zoomOut b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/zoomOut
new file mode 100644
index 0000000..bf9cec9
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/PolarCursor/cursors/zoomOut differ
diff --git a/releases/12/sabayon-artwork-core/mouse/PolarCursor/index.theme b/releases/12/sabayon-artwork-core/mouse/PolarCursor/index.theme
new file mode 100644
index 0000000..823d13d
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/mouse/PolarCursor/index.theme
@@ -0,0 +1,4 @@
+[Icon Theme]
+Name=PolarCursorTheme
+Comment=A smooth white cursor theme
+Example=left_ptr
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/X_cursor b/releases/12/sabayon-artwork-core/mouse/entis/cursors/X_cursor
new file mode 100644
index 0000000..2719d72
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/X_cursor differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/based_arrow_down b/releases/12/sabayon-artwork-core/mouse/entis/cursors/based_arrow_down
new file mode 100644
index 0000000..b91f931
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/based_arrow_down differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/based_arrow_up b/releases/12/sabayon-artwork-core/mouse/entis/cursors/based_arrow_up
new file mode 100644
index 0000000..b91f931
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/based_arrow_up differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/circle b/releases/12/sabayon-artwork-core/mouse/entis/cursors/circle
new file mode 100644
index 0000000..2719d72
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/circle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/copy b/releases/12/sabayon-artwork-core/mouse/entis/cursors/copy
new file mode 100644
index 0000000..3a7d05d
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/copy differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/crossed_circle b/releases/12/sabayon-artwork-core/mouse/entis/cursors/crossed_circle
new file mode 100644
index 0000000..2719d72
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/crossed_circle differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/fleur b/releases/12/sabayon-artwork-core/mouse/entis/cursors/fleur
new file mode 100644
index 0000000..9857082
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/fleur differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/hand1 b/releases/12/sabayon-artwork-core/mouse/entis/cursors/hand1
new file mode 100644
index 0000000..9857082
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/hand1 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/hand2 b/releases/12/sabayon-artwork-core/mouse/entis/cursors/hand2
new file mode 100644
index 0000000..9857082
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/hand2 differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/left_ptr b/releases/12/sabayon-artwork-core/mouse/entis/cursors/left_ptr
new file mode 100644
index 0000000..8136be1
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/left_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/left_ptr_watch b/releases/12/sabayon-artwork-core/mouse/entis/cursors/left_ptr_watch
new file mode 100644
index 0000000..5e09b2f
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/left_ptr_watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/question_arrow b/releases/12/sabayon-artwork-core/mouse/entis/cursors/question_arrow
new file mode 100644
index 0000000..cc5f8a7
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/question_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/right_ptr b/releases/12/sabayon-artwork-core/mouse/entis/cursors/right_ptr
new file mode 100644
index 0000000..3d43ee3
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/right_ptr differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_down_arrow b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_down_arrow
new file mode 100644
index 0000000..b91f931
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_down_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_h_double_arrow b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_h_double_arrow
new file mode 100644
index 0000000..d0c5371
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_h_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_left_arrow b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_left_arrow
new file mode 100644
index 0000000..d0c5371
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_left_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_right_arrow b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_right_arrow
new file mode 100644
index 0000000..d0c5371
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_right_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_up_arrow b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_up_arrow
new file mode 100644
index 0000000..b91f931
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_up_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_v_double_arrow b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_v_double_arrow
new file mode 100644
index 0000000..b91f931
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/sb_v_double_arrow differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/top_left_corner b/releases/12/sabayon-artwork-core/mouse/entis/cursors/top_left_corner
new file mode 100644
index 0000000..d2ddb8e
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/top_left_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/top_right_corner b/releases/12/sabayon-artwork-core/mouse/entis/cursors/top_right_corner
new file mode 100644
index 0000000..93be014
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/top_right_corner differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/watch b/releases/12/sabayon-artwork-core/mouse/entis/cursors/watch
new file mode 100644
index 0000000..c1ea910
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/watch differ
diff --git a/releases/12/sabayon-artwork-core/mouse/entis/cursors/xterm b/releases/12/sabayon-artwork-core/mouse/entis/cursors/xterm
new file mode 100644
index 0000000..8c5f0c7
Binary files /dev/null and b/releases/12/sabayon-artwork-core/mouse/entis/cursors/xterm differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/bizcom.png b/releases/12/sabayon-artwork-core/plymouth/bizcom.png
new file mode 100644
index 0000000..9b64e0c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/bizcom.png differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/box.png b/releases/12/sabayon-artwork-core/plymouth/sabayon/box.png
new file mode 100644
index 0000000..54876e6
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/sabayon/box.png differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/bullet.png b/releases/12/sabayon-artwork-core/plymouth/sabayon/bullet.png
new file mode 100644
index 0000000..dd52736
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/sabayon/bullet.png differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/entry.png b/releases/12/sabayon-artwork-core/plymouth/sabayon/entry.png
new file mode 100644
index 0000000..a9f4157
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/sabayon/entry.png differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/lock.png b/releases/12/sabayon-artwork-core/plymouth/sabayon/lock.png
new file mode 100644
index 0000000..a0f8c12
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/sabayon/lock.png differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/progress_bar.png b/releases/12/sabayon-artwork-core/plymouth/sabayon/progress_bar.png
new file mode 100644
index 0000000..dd1e747
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/sabayon/progress_bar.png differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/progress_box.png b/releases/12/sabayon-artwork-core/plymouth/sabayon/progress_box.png
new file mode 100644
index 0000000..c485cfb
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/sabayon/progress_box.png differ
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/sabayon.plymouth b/releases/12/sabayon-artwork-core/plymouth/sabayon/sabayon.plymouth
new file mode 100644
index 0000000..8513931
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/plymouth/sabayon/sabayon.plymouth
@@ -0,0 +1,11 @@
+[Plymouth Theme]
+Name=Script
+Description=Script example plugin.
+ModuleName=script
+
+[script]
+ImageDir=/usr/share/plymouth/themes/sabayon
+ScriptFile=/usr/share/plymouth/themes/sabayon/sabayon.script
+
+[script-env-vars]
+example_env_var=example env var value
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/sabayon.script b/releases/12/sabayon-artwork-core/plymouth/sabayon/sabayon.script
new file mode 100644
index 0000000..f30fe64
--- /dev/null
+++ b/releases/12/sabayon-artwork-core/plymouth/sabayon/sabayon.script
@@ -0,0 +1,183 @@
+# This is an example plymouth plugin script
+
+
+# Sabayon customization, add our wallpaper
+sabayon_wall = Image("wallpaper.png").Scale(
+ Window.GetWidth(), Window.GetHeight());
+sabayon_sprite = Sprite(sabayon_wall);
+sabayon_sprite.setZ(-100);
+
+logo.image = Image("special://logo");
+logo.sprite = Sprite(logo.image);
+logo.opacity_angle = 0;
+
+fun refresh_callback ()
+ {
+ if (status == "normal")
+ {
+ logo.opacity_angle += ((2 * 3.14) / 50) * 0.5; # 0.5 HZ
+ min_opacity = 0.3;
+ opacity = (Math.Cos(logo.opacity_angle) + 1) / 2;
+ opacity *= 1 - min_opacity;
+ opacity += min_opacity;
+ logo.sprite.SetX (Window.GetX() + Window.GetWidth() / 2 - logo.image.GetWidth() / 2);
+ logo.sprite.SetY (Window.GetY() + Window.GetHeight() / 2 - logo.image.GetHeight() / 2);
+ logo.sprite.SetOpacity (opacity);
+ }
+ else
+ {
+ logo.sprite.SetX (0);
+ logo.sprite.SetY (0);
+ logo.sprite.SetOpacity (1);
+ }
+ }
+
+Plymouth.SetRefreshFunction (refresh_callback);
+
+#----------------------------------------- Dialogue --------------------------------
+
+status = "normal";
+
+fun dialog_setup()
+ {
+ local.box;
+ local.lock;
+ local.entry;
+
+ box.image = Image("box.png");
+ lock.image = Image("lock.png");
+ entry.image = Image("entry.png");
+
+ box.sprite = Sprite(box.image);
+ box.x = Window.GetX() + Window.GetWidth() / 2 - box.image.GetWidth ()/2;
+ box.y = Window.GetY() + Window.GetHeight() / 2 - box.image.GetHeight()/2;
+ box.z = 10000;
+ box.sprite.SetPosition(box.x, box.y, box.z);
+
+ lock.sprite = Sprite(lock.image);
+ lock.x = box.x + box.image.GetWidth()/2 - (lock.image.GetWidth() + entry.image.GetWidth()) / 2;
+ lock.y = box.y + box.image.GetHeight()/2 - lock.image.GetHeight()/2;
+ lock.z = box.z + 1;
+ lock.sprite.SetPosition(lock.x, lock.y, lock.z);
+
+ entry.sprite = Sprite(entry.image);
+ entry.x = lock.x + lock.image.GetWidth();
+ entry.y = box.y + box.image.GetHeight()/2 - entry.image.GetHeight()/2;
+ entry.z = box.z + 1;
+ entry.sprite.SetPosition(entry.x, entry.y, entry.z);
+
+ global.dialog.box = box;
+ global.dialog.lock = lock;
+ global.dialog.entry = entry;
+ global.dialog.bullet_image = Image("bullet.png");
+ dialog_opacity (1);
+ }
+
+fun dialog_opacity(opacity)
+ {
+ dialog.box.sprite.SetOpacity (opacity);
+ dialog.lock.sprite.SetOpacity (opacity);
+ dialog.entry.sprite.SetOpacity (opacity);
+ for (index = 0; dialog.bullet[index]; index++)
+ {
+ dialog.bullet[index].sprite.SetOpacity(opacity);
+ }
+ }
+
+fun display_normal_callback ()
+ {
+ global.status = "normal";
+ if (global.dialog)
+ dialog_opacity (0);
+ }
+
+fun display_password_callback (prompt, bullets)
+ {
+ global.status = "password";
+ if (!global.dialog)
+ dialog_setup();
+ else
+ dialog_opacity(1);
+ for (index = 0; dialog.bullet[index] || index < bullets; index++)
+ {
+ if (!dialog.bullet[index])
+ {
+ dialog.bullet[index].sprite = Sprite(dialog.bullet_image);
+ dialog.bullet[index].x = dialog.entry.x + index * dialog.bullet_image.GetWidth();
+ dialog.bullet[index].y = dialog.entry.y + dialog.entry.image.GetHeight() / 2 - dialog.bullet_image.GetHeight() / 2;
+ dialog.bullet[index].z = dialog.entry.z + 1;
+ dialog.bullet[index].sprite.SetPosition(dialog.bullet[index].x, dialog.bullet[index].y, dialog.bullet[index].z);
+ }
+ if (index < bullets)
+ dialog.bullet[index].sprite.SetOpacity(1);
+ else
+ dialog.bullet[index].sprite.SetOpacity(0);
+ }
+ }
+
+Plymouth.SetDisplayNormalFunction(display_normal_callback);
+Plymouth.SetDisplayPasswordFunction(display_password_callback);
+
+#----------------------------------------- Progress Bar --------------------------------
+
+progress_box.image = Image("progress_box.png");
+progress_box.sprite = Sprite(progress_box.image);
+
+progress_box.x = Window.GetX() + Window.GetWidth() / 2 - progress_box.image.GetWidth() / 2;
+progress_box.y = Window.GetY() + Window.GetHeight() * 0.75 - progress_box.image.GetHeight() / 2;
+progress_box.sprite.SetPosition(progress_box.x, progress_box.y, 0);
+
+progress_bar.original_image = Image("progress_bar.png");
+progress_bar.sprite = Sprite();
+
+progress_bar.x = Window.GetX() + Window.GetWidth() / 2 - progress_bar.original_image.GetWidth() / 2;
+progress_bar.y = Window.GetY() + Window.GetHeight() / 2 * 1.5 - progress_box.image.GetHeight() / 2 + (progress_box.image.GetHeight() - progress_bar.original_image.GetHeight()) / 2;
+progress_bar.sprite.SetPosition(progress_bar.x, progress_bar.y, 1);
+
+fun progress_callback (duration, progress)
+ {
+ if (progress_bar.image.GetWidth () != Math.Int (progress_bar.original_image.GetWidth () * progress))
+ {
+ progress_bar.image = progress_bar.original_image.Scale(progress_bar.original_image.GetWidth(progress_bar.original_image) * progress, progress_bar.original_image.GetHeight());
+ progress_bar.sprite.SetImage (progress_bar.image);
+ }
+ }
+
+Plymouth.SetBootProgressFunction(progress_callback);
+
+#----------------------------------------- Quit --------------------------------
+
+fun quit_callback ()
+{
+ logo.sprite.SetOpacity (1);
+}
+
+Plymouth.SetQuitFunction(quit_callback);
+
+#----------------------------------------- Message --------------------------------
+
+message_sprites = [];
+message_sprite_count = 0;
+message_sprite_y = 10;
+
+fun display_message_callback (text)
+{
+ my_image = Image.Text(text, 1, 1, 1);
+ message_sprites[message_sprite_count] = Sprite(my_image);
+ message_sprites[message_sprite_count].SetPosition(10, message_sprite_y, 10000);
+ message_sprites[message_sprite_count].text = text;
+ message_sprite_count++;
+ message_sprite_y += my_image.GetHeight();
+}
+
+fun hide_message_callback (text)
+{
+ for (i = 0; i < message_sprite_count; i++)
+ {
+ if (message_sprites[i].text == text)
+ message_sprites[i] = NULL;
+ }
+}
+
+Plymouth.SetDisplayMessageFunction (display_message_callback);
+Plymouth.SetHideMessageFunction (hide_message_callback);
diff --git a/releases/12/sabayon-artwork-core/plymouth/sabayon/wallpaper.png b/releases/12/sabayon-artwork-core/plymouth/sabayon/wallpaper.png
new file mode 100644
index 0000000..21b6c4c
Binary files /dev/null and b/releases/12/sabayon-artwork-core/plymouth/sabayon/wallpaper.png differ
diff --git a/releases/12/sabayon-artwork-extra/Makefile b/releases/12/sabayon-artwork-extra/Makefile
new file mode 100644
index 0000000..9d18003
--- /dev/null
+++ b/releases/12/sabayon-artwork-extra/Makefile
@@ -0,0 +1,29 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+ ./make_compiz.sh
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-extra/compiz/sabayonlinux.png b/releases/12/sabayon-artwork-extra/compiz/sabayonlinux.png
new file mode 100644
index 0000000..65967e8
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/compiz/sabayonlinux.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.close.png b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.close.png
new file mode 100644
index 0000000..ca5f5e3
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.close.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.max.png b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.max.png
new file mode 100644
index 0000000..70ede39
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.max.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.min.png b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.min.png
new file mode 100644
index 0000000..66f0b10
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.min.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.restore.png b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.restore.png
new file mode 100644
index 0000000..70ede39
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Blended/buttons.restore.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Blended/theme.ini b/releases/12/sabayon-artwork-extra/emerald/Blended/theme.ini
new file mode 100644
index 0000000..1b55e31
--- /dev/null
+++ b/releases/12/sabayon-artwork-extra/emerald/Blended/theme.ini
@@ -0,0 +1,483 @@
+
+[pixmap_settings]
+active_top_use_scaled=false
+active_top_left_use_scaled=false
+active_top_left_width=12
+active_top_left_use_width=false
+active_top_left_height=0
+active_top_left_use_height=false
+active_top_right_use_scaled=false
+active_top_right_width=12
+active_top_right_use_width=false
+active_top_right_height=0
+active_top_right_use_height=false
+active_left_use_scaled=false
+active_left_width=3
+active_left_use_width=false
+active_right_use_scaled=false
+active_right_width=4
+active_right_use_width=false
+active_bottom_use_scaled=false
+active_bottom_left_use_scaled=false
+active_bottom_left_width=3
+active_bottom_left_use_width=false
+active_bottom_left_height=0
+active_bottom_left_use_height=false
+active_bottom_right_use_scaled=false
+active_bottom_right_width=11
+active_bottom_right_use_width=false
+active_bottom_right_height=0
+active_bottom_right_use_height=false
+active_title_use_scaled=false
+active_title_left_use_scaled=false
+active_title_left_width=0
+active_title_left_use_width=false
+active_title_right_use_scaled=false
+active_title_right_width=0
+active_title_right_use_width=false
+inactive_use_active_pixmaps=true
+inactive_top_use_scaled=false
+inactive_top_left_use_scaled=false
+inactive_top_left_width=0
+inactive_top_left_use_width=false
+inactive_top_left_height=0
+inactive_top_left_use_height=false
+inactive_top_right_use_scaled=false
+inactive_top_right_width=0
+inactive_top_right_use_width=false
+inactive_top_right_height=0
+inactive_top_right_use_height=false
+inactive_left_use_scaled=false
+inactive_left_width=0
+inactive_left_use_width=false
+inactive_right_use_scaled=false
+inactive_right_width=0
+inactive_right_use_width=false
+inactive_bottom_use_scaled=false
+inactive_bottom_left_use_scaled=false
+inactive_bottom_left_width=0
+inactive_bottom_left_use_width=false
+inactive_bottom_left_height=0
+inactive_bottom_left_use_height=false
+inactive_bottom_right_use_scaled=false
+inactive_bottom_right_width=0
+inactive_bottom_right_use_width=false
+inactive_bottom_right_height=0
+inactive_bottom_right_use_height=false
+inactive_title_use_scaled=false
+inactive_title_left_use_scaled=false
+inactive_title_left_width=0
+inactive_title_left_use_width=false
+inactive_title_right_use_scaled=false
+inactive_title_right_width=0
+inactive_title_right_use_width=false
+active_outer=#ffffff
+active_outer_alpha=0
+active_inner=#ffffff
+active_inner_alpha=0
+active_title_outer=#ffffff
+active_title_outer_alpha=0
+active_title_inner=#ffffff
+active_title_inner_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0.22
+inactive_inner=#000000
+inactive_inner_alpha=0.22
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0.22
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0.22
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+top_radius=5
+bottom_radius=5
+
+[truglass_settings]
+active_base=#f0ebe5
+active_base_alpha=1
+active_upper_title_glow=#fffaf4
+active_upper_title_glow_alpha=1
+active_upper_glow=#faf5ef
+active_upper_glow_alpha=1
+active_lower_glow=#f0ebe5
+active_lower_glow_alpha=1
+active_middle_glow=#f0ebe5
+active_middle_glow_alpha=1
+active_outer_glow=#f0ebe5
+active_outer_glow_alpha=1
+active_separator_line=#fafafd
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#4e4e4e
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#4e4e4e
+active_contents_halo_alpha=0
+active_contents_highlight=#4e4e4e
+active_contents_highlight_alpha=0
+active_contents_shadow=#4e4e4e
+active_contents_shadow_alpha=0
+inactive_base=#4e4e4e
+inactive_base_alpha=0.69999999999999996
+inactive_upper_title_glow=#9f9fa0
+inactive_upper_title_glow_alpha=0.80000000000000004
+inactive_upper_glow=#4e4e4e
+inactive_upper_glow_alpha=0.70999999999999996
+inactive_lower_glow=#9f9fa0
+inactive_lower_glow_alpha=0.84999999999999998
+inactive_middle_glow=#9f9fa0
+inactive_middle_glow_alpha=0
+inactive_outer_glow=#4e4e4e
+inactive_outer_glow_alpha=1
+inactive_separator_line=#fbfbfb
+inactive_separator_line_alpha=0
+inactive_window_halo=#4e4e4e
+inactive_window_halo_alpha=0.20000000000000001
+inactive_window_highlight=#9f9fa0
+inactive_window_highlight_alpha=0.25
+inactive_window_shadow=#4e4e4e
+inactive_window_shadow_alpha=0.10000000000000001
+inactive_contents_halo=#9f9fa0
+inactive_contents_halo_alpha=0.84999999999999998
+inactive_contents_highlight=#9f9fa0
+inactive_contents_highlight_alpha=0.84999999999999998
+inactive_contents_shadow=#9f9fa0
+inactive_contents_shadow_alpha=0.84999999999999998
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=4
+glow_height=11.800000000000001
+
+[legacy_settings]
+active_base=#000000
+active_base_alpha=0
+active_glow=#000000
+active_glow_alpha=0
+active_sides=#000000
+active_sides_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#ffffff
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_base=#000000
+inactive_base_alpha=0
+inactive_glow=#000000
+inactive_glow_alpha=0
+inactive_sides=#000000
+inactive_sides_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0
+inactive_window_highlight=#ffffff
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=4.5
+active_outer=#e2e3e4
+active_outer_alpha=1
+active_inner=#e2e3e4
+active_inner_alpha=1
+active_title_outer=#c6c6c6
+active_title_outer_alpha=1
+active_title_inner=#ecedee
+active_title_inner_alpha=1
+inactive_outer=#e2e3e4
+inactive_outer_alpha=1
+inactive_inner=#e2e3e4
+inactive_inner_alpha=1
+inactive_title_outer=#e2e3e4
+inactive_title_outer_alpha=1
+inactive_title_inner=#ecedee
+inactive_title_inner_alpha=1
+
+[zootreeves_settings]
+active_outer=#000000
+active_outer_alpha=0
+active_inner=#000000
+active_inner_alpha=0
+active_title_outer=#000000
+active_title_outer_alpha=0
+active_title_inner=#000000
+active_title_inner_alpha=0
+active_gradient_repeat_enabled=true
+active_gradient_repeat_direction_vertical=false
+active_gradient_repeat_direction_diagonal=true
+active_gradient_repeat_height=2.1000000000000001
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_frame_halo=#ff0000
+active_window_frame_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0
+inactive_inner=#000000
+inactive_inner_alpha=0
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0
+inactive_gradient_repeat_enabled=true
+inactive_gradient_repeat_direction_vertical=false
+inactive_gradient_repeat_direction_diagonal=false
+inactive_gradient_repeat_height=3.1000000000000001
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_frame_halo=#000000
+inactive_window_frame_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+enable_maximised_colors=false
+gradient_repeat_disabled_maximised=false
+outer_maximised_color=#000000
+outer_maximised_alpha=0
+inner_maximised_color=#000000
+inner_maximised_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+frame_radius=7.7999999999999998
+titlebar_radius=10.699999999999999
+window_gap=1.3999999999999999
+show_border_maximised=false
+show_border_minimised=false
+minimised_border=7
+enable_title_bar_dip=true
+enable_bar_dip_button_part=false
+title_bar_dip_title_width=511
+title_bar_dip_button_width=104
+title_bar_dip_radius=20
+round_tri=true
+enable_left_bar_dip=false
+left_bar_dip_radius=0
+enable_left_bar_dip_lower_part=false
+left_bar_dip_offset=0
+pixmaps_titlebarpart_enabled=true
+pixmaps_titlebarpart_repeat_enabled=false
+pixmaps_buttonpart_enabled=true
+pixmaps_buttonpart_repeat_enabled=false
+pixmaps_titlebar_enabled=true
+pixmaps_titlebar_repeat_enabled=false
+
+[vrunner_settings]
+active_title_left=#f0ebe5
+active_title_left_alpha=1
+active_title_middle=#f0ebe5
+active_title_middle_alpha=1
+active_title_right=#f0ebe5
+active_title_right_alpha=1
+active_color_contrast=0.88
+active_alpha_contrast=1
+active_title_notch_position=0.33000000000000002
+active_curve_offset=0
+active_use_glow=true
+active_glow_inner=#ffffff
+active_glow_inner_alpha=0
+active_glow_radius=10.5
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#565656
+active_window_highlight_alpha=0
+active_window_shadow=#565656
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#565656
+active_contents_highlight_alpha=0
+active_contents_shadow=#565656
+active_contents_shadow_alpha=0
+inactive_title_left=#565656
+inactive_title_left_alpha=0.90000000000000002
+inactive_title_middle=#b3aeae
+inactive_title_middle_alpha=1
+inactive_title_right=#565656
+inactive_title_right_alpha=0.90000000000000002
+inactive_color_contrast=0.65000000000000002
+inactive_alpha_contrast=0.80000000000000004
+inactive_title_notch_position=0
+inactive_curve_offset=0
+inactive_use_glow=false
+inactive_glow_inner=#ffffff
+inactive_glow_inner_alpha=0
+inactive_glow_radius=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#565656
+inactive_window_halo_alpha=0.5
+inactive_window_highlight=#b3aeae
+inactive_window_highlight_alpha=0.5
+inactive_window_shadow=#b3aeae
+inactive_window_shadow_alpha=0.5
+inactive_contents_halo=#565656
+inactive_contents_halo_alpha=0.5
+inactive_contents_highlight=#b3aeae
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#b3aeae
+inactive_contents_shadow_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=1.6000000000000001
+
+[engine_version]
+vrunner=0.2
+legacy=0.1
+
+[engine]
+engine=legacy
+
+[buttons]
+use_pixmap_buttons=true
+use_button_glow=false
+use_button_inactive_glow=false
+active_button=#ffffff
+active_button_alpha=0
+active_button_halo=#ffffff
+active_button_halo_alpha=0
+inactive_button=#ffffff
+inactive_button_alpha=0
+inactive_button_halo=#ffffff
+inactive_button_halo_alpha=0
+vertical_offset=4
+horizontal_offset=0
+
+[shadow]
+shadow_color=#000000
+shadow_opacity=0.71999999999999997
+shadow_radius=8.6999999999999993
+shadow_offset_x=1
+shadow_offset_y=1
+
+[borders]
+top=5
+bottom=4
+left=3
+right=3
+
+[titlebar]
+active_text=#000000
+active_text_alpha=1
+active_text_halo=#ffffff
+active_text_halo_alpha=0
+inactive_text=#a3a3a3
+inactive_text_alpha=0.84999999999999998
+inactive_text_halo=#ffffff
+inactive_text_halo_alpha=0
+titlebar_font=1979 11
+min_titlebar_height=17
+title_object_layout=IT::NXC:Normal Layout
+
+[theme]
+creator=Ubuntubox
+description=Just a Port of Blended Gtk theme
+theme_version=0.2
+suggested=Murrine Lemongraphite
+version=0.3.0-svn
+
+[oxygen_settings]
+active_base=#000000
+active_base_alpha=0
+active_glow=#000000
+active_glow_alpha=0
+active_sides=#000000
+active_sides_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_base=#000000
+inactive_base_alpha=0
+inactive_glow=#000000
+inactive_glow_alpha=0
+inactive_sides=#000000
+inactive_sides_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+radius=0
+
+[line_settings]
+active_border=#000000
+active_border_alpha=0
+active_title_bar=#000000
+active_title_bar_alpha=0
+inactive_border=#000000
+inactive_border_alpha=0
+inactive_title_bar=#000000
+inactive_title_bar_alpha=0
diff --git a/releases/12/sabayon-artwork-extra/emerald/Blended/theme.screenshot.png b/releases/12/sabayon-artwork-extra/emerald/Blended/theme.screenshot.png
new file mode 100644
index 0000000..e3e1b41
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Blended/theme.screenshot.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.close.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.close.png
new file mode 100644
index 0000000..3001934
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.close.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.glow.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.glow.png
new file mode 100644
index 0000000..f9fba54
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.glow.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.inactive_glow.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.inactive_glow.png
new file mode 100644
index 0000000..31d2dda
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.inactive_glow.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.max.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.max.png
new file mode 100644
index 0000000..a2cdee5
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.max.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.min.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.min.png
new file mode 100644
index 0000000..bcad602
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.min.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.restore.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.restore.png
new file mode 100644
index 0000000..310a804
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/buttons.restore.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom.png
new file mode 100644
index 0000000..b69db37
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom_left.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom_left.png
new file mode 100644
index 0000000..344a81e
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom_left.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom_right.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom_right.png
new file mode 100644
index 0000000..1a49852
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_bottom_right.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_left.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_left.png
new file mode 100644
index 0000000..1e74857
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_left.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_right.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_right.png
new file mode 100644
index 0000000..6339d2b
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_right.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top.png
new file mode 100644
index 0000000..c9f0bf7
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top_left.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top_left.png
new file mode 100644
index 0000000..c77d158
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top_left.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top_right.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top_right.png
new file mode 100644
index 0000000..c6c669c
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/pixmaps.active_top_right.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/theme.ini b/releases/12/sabayon-artwork-extra/emerald/DarkLight/theme.ini
new file mode 100644
index 0000000..5b71ce6
--- /dev/null
+++ b/releases/12/sabayon-artwork-extra/emerald/DarkLight/theme.ini
@@ -0,0 +1,426 @@
+
+[pixmap_settings]
+active_top_use_scaled=false
+active_top_left_use_scaled=false
+active_top_left_width=0
+active_top_left_use_width=false
+active_top_left_height=0
+active_top_left_use_height=false
+active_top_right_use_scaled=false
+active_top_right_width=0
+active_top_right_use_width=false
+active_top_right_height=0
+active_top_right_use_height=false
+active_left_use_scaled=false
+active_left_width=0
+active_left_use_width=false
+active_right_use_scaled=false
+active_right_width=0
+active_right_use_width=false
+active_bottom_use_scaled=false
+active_bottom_left_use_scaled=false
+active_bottom_left_width=0
+active_bottom_left_use_width=false
+active_bottom_left_height=0
+active_bottom_left_use_height=false
+active_bottom_right_use_scaled=false
+active_bottom_right_width=0
+active_bottom_right_use_width=false
+active_bottom_right_height=0
+active_bottom_right_use_height=false
+active_title_use_scaled=false
+active_title_left_use_scaled=false
+active_title_left_width=0
+active_title_left_use_width=false
+active_title_right_use_scaled=false
+active_title_right_width=0
+active_title_right_use_width=false
+inactive_use_active_pixmaps=true
+inactive_top_use_scaled=true
+inactive_top_left_use_scaled=false
+inactive_top_left_width=0
+inactive_top_left_use_width=false
+inactive_top_left_height=0
+inactive_top_left_use_height=false
+inactive_top_right_use_scaled=false
+inactive_top_right_width=0
+inactive_top_right_use_width=false
+inactive_top_right_height=0
+inactive_top_right_use_height=false
+inactive_left_use_scaled=false
+inactive_left_width=0
+inactive_left_use_width=false
+inactive_right_use_scaled=false
+inactive_right_width=0
+inactive_right_use_width=false
+inactive_bottom_use_scaled=false
+inactive_bottom_left_use_scaled=false
+inactive_bottom_left_width=0
+inactive_bottom_left_use_width=false
+inactive_bottom_left_height=0
+inactive_bottom_left_use_height=false
+inactive_bottom_right_use_scaled=false
+inactive_bottom_right_width=0
+inactive_bottom_right_use_width=false
+inactive_bottom_right_height=0
+inactive_bottom_right_use_height=false
+inactive_title_use_scaled=false
+inactive_title_left_use_scaled=false
+inactive_title_left_width=0
+inactive_title_left_use_width=false
+inactive_title_right_use_scaled=false
+inactive_title_right_width=0
+inactive_title_right_use_width=false
+active_outer=#000000
+active_outer_alpha=0
+active_inner=#000000
+active_inner_alpha=0
+active_title_outer=#000000
+active_title_outer_alpha=0
+active_title_inner=#000000
+active_title_inner_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0
+inactive_inner=#000000
+inactive_inner_alpha=0
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+top_radius=4
+bottom_radius=4
+
+[engine_version]
+zootreeves=0.5
+pixmap=0.2
+
+[engine]
+engine=pixmap
+
+[buttons]
+use_pixmap_buttons=true
+use_button_glow=true
+use_button_inactive_glow=true
+active_button=#000000
+active_button_alpha=0
+active_button_halo=#ffffff
+active_button_halo_alpha=0
+inactive_button=#000000
+inactive_button_alpha=0
+inactive_button_halo=#ffffff
+inactive_button_halo_alpha=0
+vertical_offset=3
+horizontal_offset=0
+
+[shadow]
+shadow_color=#000000
+shadow_opacity=0.65000000000000002
+shadow_radius=12
+shadow_offset_x=0
+shadow_offset_y=2
+
+[borders]
+top=6
+bottom=5
+left=5
+right=5
+
+[titlebar]
+active_text=#ffffff
+active_text_alpha=0.90000000000000002
+active_text_halo=#000000
+active_text_halo_alpha=0.29999999999999999
+inactive_text=#ffffff
+inactive_text_alpha=0.40000000000000002
+inactive_text_halo=#000000
+inactive_text_halo_alpha=0.14999999999999999
+titlebar_font=Bitstream Vera Sans Bold 10
+min_titlebar_height=10
+title_object_layout=I:T:N(0)X(0)C(0)
+
+[theme]
+creator=elehvantti
+description=DarkLight for Beryl
+theme_version=1.1
+suggested=DarkLight
+version=0.1.3
+
+[zootreeves_settings]
+active_outer=#000000
+active_outer_alpha=0
+active_inner=#000000
+active_inner_alpha=0
+active_title_outer=#000000
+active_title_outer_alpha=0
+active_title_inner=#000000
+active_title_inner_alpha=0
+active_gradient_repeat_enabled=false
+active_gradient_repeat_direction_vertical=false
+active_gradient_repeat_direction_diagonal=false
+active_gradient_repeat_height=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_frame_halo=#000000
+active_window_frame_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0
+inactive_inner=#000000
+inactive_inner_alpha=0
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0
+inactive_gradient_repeat_enabled=false
+inactive_gradient_repeat_direction_vertical=false
+inactive_gradient_repeat_direction_diagonal=false
+inactive_gradient_repeat_height=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_frame_halo=#000000
+inactive_window_frame_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+enable_maximised_colors=false
+gradient_repeat_disabled_maximised=false
+outer_maximised_color=#000000
+outer_maximised_alpha=0
+inner_maximised_color=#000000
+inner_maximised_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+frame_radius=0
+titlebar_radius=0
+window_gap=0
+show_border_maximised=false
+show_border_minimised=false
+minimised_border=0
+enable_title_bar_dip=false
+enable_bar_dip_button_part=false
+title_bar_dip_title_width=80
+title_bar_dip_button_width=10
+title_bar_dip_radius=1
+round_tri=false
+enable_left_bar_dip=false
+left_bar_dip_radius=0
+enable_left_bar_dip_lower_part=false
+left_bar_dip_offset=0
+pixmaps_titlebarpart_enabled=false
+pixmaps_titlebarpart_repeat_enabled=false
+pixmaps_buttonpart_enabled=false
+pixmaps_buttonpart_repeat_enabled=false
+pixmaps_titlebar_enabled=false
+pixmaps_titlebar_repeat_enabled=false
+
+[legacy_settings]
+active_outer=#000000
+active_outer_alpha=0
+active_inner=#000000
+active_inner_alpha=0
+active_title_outer=#000000
+active_title_outer_alpha=0
+active_title_inner=#000000
+active_title_inner_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0
+inactive_inner=#000000
+inactive_inner_alpha=0
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+radius=0
+active_base=#000000
+active_base_alpha=0
+active_glow=#000000
+active_glow_alpha=0
+active_sides=#000000
+active_sides_alpha=0
+inactive_base=#000000
+inactive_base_alpha=0
+inactive_glow=#000000
+inactive_glow_alpha=0
+inactive_sides=#000000
+inactive_sides_alpha=0
+
+[truglass_settings]
+active_base=#000000
+active_base_alpha=0
+active_upper_title_glow=#000000
+active_upper_title_glow_alpha=0
+active_upper_glow=#000000
+active_upper_glow_alpha=0
+active_lower_glow=#000000
+active_lower_glow_alpha=0
+active_middle_glow=#000000
+active_middle_glow_alpha=0
+active_outer_glow=#000000
+active_outer_glow_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_base=#000000
+inactive_base_alpha=0
+inactive_upper_title_glow=#000000
+inactive_upper_title_glow_alpha=0
+inactive_upper_glow=#000000
+inactive_upper_glow_alpha=0
+inactive_lower_glow=#000000
+inactive_lower_glow_alpha=0
+inactive_middle_glow=#000000
+inactive_middle_glow_alpha=0
+inactive_outer_glow=#000000
+inactive_outer_glow_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+radius=0
+glow_height=0
+
+[vrunner_settings]
+active_title_left=#000000
+active_title_left_alpha=0
+active_title_middle=#000000
+active_title_middle_alpha=0
+active_title_right=#000000
+active_title_right_alpha=0
+active_color_contrast=0
+active_alpha_contrast=0
+active_title_notch_position=0.5
+active_curve_offset=0
+active_use_glow=false
+active_glow_inner=#000000
+active_glow_inner_alpha=0
+active_glow_radius=7
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_title_left=#000000
+inactive_title_left_alpha=0
+inactive_title_middle=#000000
+inactive_title_middle_alpha=0
+inactive_title_right=#000000
+inactive_title_right_alpha=0
+inactive_color_contrast=0
+inactive_alpha_contrast=0
+inactive_title_notch_position=0.5
+inactive_curve_offset=0
+inactive_use_glow=false
+inactive_glow_inner=#000000
+inactive_glow_inner_alpha=0
+inactive_glow_radius=7
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+radius=0
diff --git a/releases/12/sabayon-artwork-extra/emerald/DarkLight/theme.screenshot.png b/releases/12/sabayon-artwork-extra/emerald/DarkLight/theme.screenshot.png
new file mode 100644
index 0000000..af408d3
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/DarkLight/theme.screenshot.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.above.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.above.png
new file mode 100644
index 0000000..d7e00ec
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.above.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.close.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.close.png
new file mode 100644
index 0000000..a539f62
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.close.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.down.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.down.png
new file mode 100644
index 0000000..6cd8b31
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.down.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.glow.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.glow.png
new file mode 100644
index 0000000..f8ce95e
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.glow.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.inactive_glow.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.inactive_glow.png
new file mode 100644
index 0000000..f8ce95e
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.inactive_glow.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.max.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.max.png
new file mode 100644
index 0000000..5fe0098
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.max.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.menu.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.menu.png
new file mode 100644
index 0000000..a543043
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.menu.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.min.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.min.png
new file mode 100644
index 0000000..c111a56
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.min.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.restore.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.restore.png
new file mode 100644
index 0000000..5fe0098
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.restore.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.shade.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.shade.png
new file mode 100644
index 0000000..a543043
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.shade.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.sticky.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.sticky.png
new file mode 100644
index 0000000..1783a90
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.sticky.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unabove.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unabove.png
new file mode 100644
index 0000000..6cd8b31
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unabove.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unshade.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unshade.png
new file mode 100644
index 0000000..a543043
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unshade.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unsticky.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unsticky.png
new file mode 100644
index 0000000..ce68198
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.unsticky.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.up.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.up.png
new file mode 100644
index 0000000..d7e00ec
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons.up.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons2.close.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons2.close.png
new file mode 100644
index 0000000..08c7375
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/buttons2.close.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledclose.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledclose.png
new file mode 100644
index 0000000..3ae2c19
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledclose.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmax.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmax.png
new file mode 100644
index 0000000..bc45260
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmax.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmenu.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmenu.png
new file mode 100644
index 0000000..76b5d77
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmenu.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmin.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmin.png
new file mode 100644
index 0000000..99a4632
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/scaledmin.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/theme.ini b/releases/12/sabayon-artwork-extra/emerald/Sabayon/theme.ini
new file mode 100644
index 0000000..25219ae
--- /dev/null
+++ b/releases/12/sabayon-artwork-extra/emerald/Sabayon/theme.ini
@@ -0,0 +1,471 @@
+
+[legacy_settings]
+active_outer=#313233
+active_outer_alpha=0.80000000000000004
+active_inner=#313233
+active_inner_alpha=0.80000000000000004
+active_title_outer=#313233
+active_title_outer_alpha=0.80000000000000004
+active_title_inner=#313233
+active_title_inner_alpha=0.80000000000000004
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#272727
+active_window_halo_alpha=0.80000000000000004
+active_window_highlight=#4f5051
+active_window_highlight_alpha=0.80000000000000004
+active_window_shadow=#68696b
+active_window_shadow_alpha=0.5
+active_contents_halo=#ffffff
+active_contents_halo_alpha=0
+active_contents_highlight=#4f5051
+active_contents_highlight_alpha=0.90000000000000002
+active_contents_shadow=#68696b
+active_contents_shadow_alpha=0.5
+inactive_outer=#454545
+inactive_outer_alpha=0.94999999999999996
+inactive_inner=#454545
+inactive_inner_alpha=0.94999999999999996
+inactive_title_outer=#454545
+inactive_title_outer_alpha=0.94999999999999996
+inactive_title_inner=#454545
+inactive_title_inner_alpha=0.94999999999999996
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0.34999999999999998
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0.34999999999999998
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0.34999999999999998
+round_top_left=true
+round_top_right=true
+round_bottom_left=false
+round_bottom_right=false
+radius=7
+
+[line_settings]
+active_border=#000000
+active_border_alpha=0
+active_title_bar=#000000
+active_title_bar_alpha=0
+inactive_border=#000000
+inactive_border_alpha=0
+inactive_title_bar=#000000
+inactive_title_bar_alpha=0
+
+[oxygen_settings]
+active_base=#000000
+active_base_alpha=1
+active_glow=#000000
+active_glow_alpha=1
+active_sides=#000000
+active_sides_alpha=1
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_base=#000000
+inactive_base_alpha=0
+inactive_glow=#000000
+inactive_glow_alpha=0
+inactive_sides=#000000
+inactive_sides_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+radius=0
+
+[truglass_settings]
+active_base=#060606
+active_base_alpha=0.94999999999999996
+active_upper_title_glow=#060606
+active_upper_title_glow_alpha=0.59999999999999998
+active_upper_glow=#00b0ff
+active_upper_glow_alpha=0.80000000000000004
+active_lower_glow=#060606
+active_lower_glow_alpha=0.81999999999999995
+active_middle_glow=#ffffff
+active_middle_glow_alpha=0
+active_outer_glow=#000000
+active_outer_glow_alpha=0
+active_separator_line=#00b0ff
+active_separator_line_alpha=0
+active_window_halo=#20262a
+active_window_halo_alpha=0.80000000000000004
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_base=#060606
+inactive_base_alpha=0.94999999999999996
+inactive_upper_title_glow=#060606
+inactive_upper_title_glow_alpha=0.59999999999999998
+inactive_upper_glow=#00b0ff
+inactive_upper_glow_alpha=0
+inactive_lower_glow=#666b6f
+inactive_lower_glow_alpha=0.81999999999999995
+inactive_middle_glow=#000000
+inactive_middle_glow_alpha=0
+inactive_outer_glow=#000000
+inactive_outer_glow_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#20262a
+inactive_window_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=15
+glow_height=1.2
+
+[vrunner_settings]
+active_title_left=#4f4f4f
+active_title_left_alpha=0.94999999999999996
+active_title_middle=#4f4f4f
+active_title_middle_alpha=0.90000000000000002
+active_title_right=#5d5d5d
+active_title_right_alpha=0.94999999999999996
+active_color_contrast=0.69999999999999996
+active_alpha_contrast=0.93999999999999995
+active_title_notch_position=0.67000000000000004
+active_curve_offset=-13
+active_use_glow=false
+active_glow_inner=#ffffff
+active_glow_inner_alpha=0
+active_glow_radius=7.0999999999999996
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#4f4f4f
+active_window_halo_alpha=0.34000000000000002
+active_window_highlight=#4f4f4f
+active_window_highlight_alpha=0
+active_window_shadow=#4f4f4f
+active_window_shadow_alpha=0
+active_contents_halo=#4f4f4f
+active_contents_halo_alpha=0.25
+active_contents_highlight=#ffffff
+active_contents_highlight_alpha=0
+active_contents_shadow=#ffffff
+active_contents_shadow_alpha=0
+inactive_title_left=#4f4f4f
+inactive_title_left_alpha=0.84999999999999998
+inactive_title_middle=#4f4f4f
+inactive_title_middle_alpha=0.80000000000000004
+inactive_title_right=#4f4f4f
+inactive_title_right_alpha=0.84999999999999998
+inactive_color_contrast=0.69999999999999996
+inactive_alpha_contrast=0.93999999999999995
+inactive_title_notch_position=0.67000000000000004
+inactive_curve_offset=-13
+inactive_use_glow=false
+inactive_glow_inner=#4a4a4a
+inactive_glow_inner_alpha=0
+inactive_glow_radius=0
+inactive_separator_line=#060606
+inactive_separator_line_alpha=0
+inactive_window_halo=#4f4f4f
+inactive_window_halo_alpha=0.34000000000000002
+inactive_window_highlight=#4f4f4f
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#4f4f4f
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#4f4f4f
+inactive_contents_halo_alpha=0.25
+inactive_contents_highlight=#ffffff
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#ffffff
+inactive_contents_shadow_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=5.0999999999999996
+
+[pixmap_settings]
+active_top_use_scaled=false
+active_top_left_use_scaled=false
+active_top_left_width=0
+active_top_left_use_width=false
+active_top_left_height=0
+active_top_left_use_height=false
+active_top_right_use_scaled=false
+active_top_right_width=0
+active_top_right_use_width=false
+active_top_right_height=0
+active_top_right_use_height=false
+active_left_use_scaled=false
+active_left_width=0
+active_left_use_width=false
+active_right_use_scaled=false
+active_right_width=0
+active_right_use_width=false
+active_bottom_use_scaled=false
+active_bottom_left_use_scaled=false
+active_bottom_left_width=0
+active_bottom_left_use_width=false
+active_bottom_left_height=0
+active_bottom_left_use_height=false
+active_bottom_right_use_scaled=false
+active_bottom_right_width=0
+active_bottom_right_use_width=false
+active_bottom_right_height=0
+active_bottom_right_use_height=false
+active_title_use_scaled=false
+active_title_left_use_scaled=false
+active_title_left_width=0
+active_title_left_use_width=false
+active_title_right_use_scaled=false
+active_title_right_width=0
+active_title_right_use_width=false
+inactive_use_active_pixmaps=true
+inactive_top_use_scaled=true
+inactive_top_left_use_scaled=false
+inactive_top_left_width=0
+inactive_top_left_use_width=false
+inactive_top_left_height=0
+inactive_top_left_use_height=false
+inactive_top_right_use_scaled=false
+inactive_top_right_width=0
+inactive_top_right_use_width=false
+inactive_top_right_height=0
+inactive_top_right_use_height=false
+inactive_left_use_scaled=false
+inactive_left_width=0
+inactive_left_use_width=false
+inactive_right_use_scaled=false
+inactive_right_width=0
+inactive_right_use_width=false
+inactive_bottom_use_scaled=false
+inactive_bottom_left_use_scaled=false
+inactive_bottom_left_width=0
+inactive_bottom_left_use_width=false
+inactive_bottom_left_height=0
+inactive_bottom_left_use_height=false
+inactive_bottom_right_use_scaled=false
+inactive_bottom_right_width=0
+inactive_bottom_right_use_width=false
+inactive_bottom_right_height=0
+inactive_bottom_right_use_height=false
+inactive_title_use_scaled=false
+inactive_title_left_use_scaled=false
+inactive_title_left_width=0
+inactive_title_left_use_width=false
+inactive_title_right_use_scaled=false
+inactive_title_right_width=0
+inactive_title_right_use_width=false
+active_outer=#ffffff
+active_outer_alpha=0
+active_inner=#ffffff
+active_inner_alpha=0
+active_title_outer=#ffffff
+active_title_outer_alpha=0
+active_title_inner=#ffffff
+active_title_inner_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0.22
+inactive_inner=#000000
+inactive_inner_alpha=0.22
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0.22
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0.22
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+top_radius=15
+bottom_radius=5
+
+[zootreeves_settings]
+active_outer=#000000
+active_outer_alpha=0.95999999999999996
+active_inner=#000000
+active_inner_alpha=0.71999999999999997
+active_title_outer=#000000
+active_title_outer_alpha=0
+active_title_inner=#000000
+active_title_inner_alpha=0.059999999999999998
+active_gradient_repeat_enabled=false
+active_gradient_repeat_direction_vertical=false
+active_gradient_repeat_direction_diagonal=false
+active_gradient_repeat_height=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_frame_halo=#000000
+active_window_frame_halo_alpha=0
+active_window_highlight=#000000
+active_window_highlight_alpha=0
+active_window_shadow=#000000
+active_window_shadow_alpha=0
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#000000
+active_contents_highlight_alpha=0
+active_contents_shadow=#000000
+active_contents_shadow_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0
+inactive_inner=#000000
+inactive_inner_alpha=0
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0
+inactive_gradient_repeat_enabled=false
+inactive_gradient_repeat_direction_vertical=false
+inactive_gradient_repeat_direction_diagonal=false
+inactive_gradient_repeat_height=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_frame_halo=#000000
+inactive_window_frame_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+enable_maximised_colors=true
+gradient_repeat_disabled_maximised=false
+outer_maximised_color=#3e0c0c
+outer_maximised_alpha=0.32000000000000001
+inner_maximised_color=#dada71
+inner_maximised_alpha=1
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+frame_radius=0
+titlebar_radius=0
+window_gap=5
+show_border_maximised=false
+show_border_minimised=false
+minimised_border=0
+enable_title_bar_dip=false
+enable_bar_dip_button_part=false
+title_bar_dip_title_width=80
+title_bar_dip_button_width=10
+title_bar_dip_radius=1
+round_tri=false
+enable_left_bar_dip=false
+left_bar_dip_radius=0
+enable_left_bar_dip_lower_part=false
+left_bar_dip_offset=0
+pixmaps_titlebarpart_enabled=false
+pixmaps_titlebarpart_repeat_enabled=false
+pixmaps_buttonpart_enabled=false
+pixmaps_buttonpart_repeat_enabled=false
+pixmaps_titlebar_enabled=false
+pixmaps_titlebar_repeat_enabled=false
+
+[engine_version]
+zootreeves=0.1
+vrunner=0.2
+
+[engine]
+engine=vrunner
+
+[buttons]
+use_pixmap_buttons=true
+use_button_glow=true
+use_button_inactive_glow=true
+active_button=#6b6b6b
+active_button_alpha=0
+active_button_halo=#000000
+active_button_halo_alpha=0.75
+inactive_button=#202020
+inactive_button_alpha=0.5
+inactive_button_halo=#404040
+inactive_button_halo_alpha=1
+vertical_offset=5
+horizontal_offset=0
+
+[shadow]
+shadow_color=#000000
+shadow_opacity=0.76000000000000001
+shadow_radius=10.199999999999999
+shadow_offset_x=0
+shadow_offset_y=3
+
+[borders]
+top=6
+bottom=4
+left=4
+right=4
+
+[titlebar]
+active_text=#d8d8d8
+active_text_alpha=0.90000000000000002
+active_text_halo=#ffffff
+active_text_halo_alpha=0
+inactive_text=#717171
+inactive_text_alpha=0.69999999999999996
+inactive_text_halo=#ebebeb
+inactive_text_halo_alpha=0
+titlebar_font=DejaVu Sans Semi-Condensed 9
+min_titlebar_height=16
+title_object_layout=M(8):I(5)T:N(3)X(3)C(3)
+
+[theme]
+creator=SabayonLinux/Thev00d00
+description=A glassy theme for use with Sabayon 4.0
+theme_version=5.0_pre1
+suggested=SabayonGloss
+version=0.8.2
diff --git a/releases/12/sabayon-artwork-extra/emerald/Sabayon/theme.screenshot.png b/releases/12/sabayon-artwork-extra/emerald/Sabayon/theme.screenshot.png
new file mode 100644
index 0000000..30375d7
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Sabayon/theme.screenshot.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.close.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.close.png
new file mode 100644
index 0000000..62edfc3
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.close.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.help.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.help.png
new file mode 100644
index 0000000..c788df3
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.help.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.max.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.max.png
new file mode 100644
index 0000000..fa2acae
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.max.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.menu.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.menu.png
new file mode 100644
index 0000000..eec8870
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.menu.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.min.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.min.png
new file mode 100644
index 0000000..511745c
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.min.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.restore.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.restore.png
new file mode 100644
index 0000000..e910fae
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.restore.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.shade.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.shade.png
new file mode 100644
index 0000000..0a56dbb
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/buttons.shade.png differ
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/theme.ini b/releases/12/sabayon-artwork-extra/emerald/Xristal/theme.ini
new file mode 100644
index 0000000..19e1f13
--- /dev/null
+++ b/releases/12/sabayon-artwork-extra/emerald/Xristal/theme.ini
@@ -0,0 +1,425 @@
+
+[pixmap_settings]
+active_top_use_scaled=false
+active_top_left_use_scaled=false
+active_top_left_width=0
+active_top_left_use_width=false
+active_top_left_height=0
+active_top_left_use_height=false
+active_top_right_use_scaled=false
+active_top_right_width=0
+active_top_right_use_width=false
+active_top_right_height=0
+active_top_right_use_height=false
+active_left_use_scaled=false
+active_left_width=0
+active_left_use_width=false
+active_right_use_scaled=false
+active_right_width=0
+active_right_use_width=false
+active_bottom_use_scaled=false
+active_bottom_left_use_scaled=false
+active_bottom_left_width=0
+active_bottom_left_use_width=false
+active_bottom_left_height=0
+active_bottom_left_use_height=false
+active_bottom_right_use_scaled=false
+active_bottom_right_width=0
+active_bottom_right_use_width=false
+active_bottom_right_height=0
+active_bottom_right_use_height=false
+active_title_use_scaled=false
+active_title_left_use_scaled=false
+active_title_left_width=0
+active_title_left_use_width=false
+active_title_right_use_scaled=false
+active_title_right_width=0
+active_title_right_use_width=false
+inactive_use_active_pixmaps=false
+inactive_top_use_scaled=false
+inactive_top_left_use_scaled=false
+inactive_top_left_width=0
+inactive_top_left_use_width=false
+inactive_top_left_height=0
+inactive_top_left_use_height=false
+inactive_top_right_use_scaled=false
+inactive_top_right_width=0
+inactive_top_right_use_width=false
+inactive_top_right_height=0
+inactive_top_right_use_height=false
+inactive_left_use_scaled=false
+inactive_left_width=0
+inactive_left_use_width=false
+inactive_right_use_scaled=false
+inactive_right_width=0
+inactive_right_use_width=false
+inactive_bottom_use_scaled=false
+inactive_bottom_left_use_scaled=false
+inactive_bottom_left_width=0
+inactive_bottom_left_use_width=false
+inactive_bottom_left_height=0
+inactive_bottom_left_use_height=false
+inactive_bottom_right_use_scaled=false
+inactive_bottom_right_width=0
+inactive_bottom_right_use_width=false
+inactive_bottom_right_height=0
+inactive_bottom_right_use_height=false
+inactive_title_use_scaled=false
+inactive_title_left_use_scaled=false
+inactive_title_left_width=0
+inactive_title_left_use_width=false
+inactive_title_right_use_scaled=false
+inactive_title_right_width=0
+inactive_title_right_use_width=false
+active_outer=#000000
+active_outer_alpha=0
+active_inner=#000000
+active_inner_alpha=0
+active_title_outer=#000000
+active_title_outer_alpha=0
+active_title_inner=#000000
+active_title_inner_alpha=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+inactive_outer=#000000
+inactive_outer_alpha=0
+inactive_inner=#000000
+inactive_inner_alpha=0
+inactive_title_outer=#000000
+inactive_title_outer_alpha=0
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+round_top_left=false
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+top_radius=0
+bottom_radius=0
+
+[truglass_settings]
+active_base=#ffffff
+active_base_alpha=0
+active_upper_title_glow=#000000
+active_upper_title_glow_alpha=0
+active_upper_glow=#e9e9e9
+active_upper_glow_alpha=0.81000000000000005
+active_lower_glow=#e9e9e9
+active_lower_glow_alpha=0.52000000000000002
+active_middle_glow=#e9e9e9
+active_middle_glow_alpha=0.27000000000000002
+active_outer_glow=#e9e9e9
+active_outer_glow_alpha=0.62
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#e9e9e9
+active_window_halo_alpha=0
+active_window_highlight=#e9e9e9
+active_window_highlight_alpha=0.81000000000000005
+active_window_shadow=#e9e9e9
+active_window_shadow_alpha=0.81000000000000005
+active_contents_halo=#000000
+active_contents_halo_alpha=0
+active_contents_highlight=#dcdcdc
+active_contents_highlight_alpha=0
+active_contents_shadow=#505050
+active_contents_shadow_alpha=0
+inactive_base=#7d7d7d
+inactive_base_alpha=0
+inactive_upper_title_glow=#000000
+inactive_upper_title_glow_alpha=0
+inactive_upper_glow=#e9e9e9
+inactive_upper_glow_alpha=0
+inactive_lower_glow=#dedede
+inactive_lower_glow_alpha=0
+inactive_middle_glow=#000000
+inactive_middle_glow_alpha=0
+inactive_outer_glow=#000000
+inactive_outer_glow_alpha=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0.029999999999999999
+inactive_window_highlight=#e9e9e9
+inactive_window_highlight_alpha=0.60999999999999999
+inactive_window_shadow=#e9e9e9
+inactive_window_shadow_alpha=0.60999999999999999
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=6.5999999999999996
+glow_height=10.4
+
+[legacy_settings]
+active_base=#e7e7e7
+active_base_alpha=0.5
+active_glow=#f8f8f8
+active_glow_alpha=0.80000000000000004
+active_sides=#ffffff
+active_sides_alpha=0.59999999999999998
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#cecece
+active_window_halo_alpha=0.72999999999999998
+active_window_highlight=#cccccc
+active_window_highlight_alpha=0.23000000000000001
+active_window_shadow=#d8d8d8
+active_window_shadow_alpha=0.25
+active_contents_halo=#ffffff
+active_contents_halo_alpha=0
+active_contents_highlight=#ffffff
+active_contents_highlight_alpha=0.34999999999999998
+active_contents_shadow=#292929
+active_contents_shadow_alpha=0.41999999999999998
+inactive_base=#e7e7e7
+inactive_base_alpha=0.5
+inactive_glow=#f8f8f8
+inactive_glow_alpha=0.80000000000000004
+inactive_sides=#ffffff
+inactive_sides_alpha=0.59999999999999998
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#333333
+inactive_window_halo_alpha=0.5
+inactive_window_highlight=#ffffff
+inactive_window_highlight_alpha=0.5
+inactive_window_shadow=#aaaaaa
+inactive_window_shadow_alpha=0.25
+inactive_contents_halo=#ffffff
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#ffffff
+inactive_contents_highlight_alpha=0.23999999999999999
+inactive_contents_shadow=#292929
+inactive_contents_shadow_alpha=0.38
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=5.9000000000000004
+active_outer=#e3e3e3
+active_outer_alpha=0.48999999999999999
+active_inner=#ffffff
+active_inner_alpha=0
+active_title_outer=#e3e3e3
+active_title_outer_alpha=0.56999999999999995
+active_title_inner=#ffffff
+active_title_inner_alpha=0
+inactive_outer=#ffffff
+inactive_outer_alpha=0.5
+inactive_inner=#ffffff
+inactive_inner_alpha=0.029999999999999999
+inactive_title_outer=#d8d8d8
+inactive_title_outer_alpha=0.75
+inactive_title_inner=#ededed
+inactive_title_inner_alpha=0.029999999999999999
+
+[zootreeves_settings]
+active_outer=#e3e3e3
+active_outer_alpha=0.059999999999999998
+active_inner=#ffffff
+active_inner_alpha=0.059999999999999998
+active_title_outer=#e3e3e3
+active_title_outer_alpha=0.059999999999999998
+active_title_inner=#ffffff
+active_title_inner_alpha=0.56000000000000005
+active_gradient_repeat_enabled=false
+active_gradient_repeat_direction_vertical=false
+active_gradient_repeat_direction_diagonal=false
+active_gradient_repeat_height=0
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_frame_halo=#000000
+active_window_frame_halo_alpha=0
+active_window_highlight=#e0e0e0
+active_window_highlight_alpha=0.20999999999999999
+active_window_shadow=#858585
+active_window_shadow_alpha=0.57999999999999996
+active_contents_halo=#ffffff
+active_contents_halo_alpha=0
+active_contents_highlight=#ffffff
+active_contents_highlight_alpha=0.34999999999999998
+active_contents_shadow=#404040
+active_contents_shadow_alpha=0.46999999999999997
+inactive_outer=#f9f9f9
+inactive_outer_alpha=0.48999999999999999
+inactive_inner=#696969
+inactive_inner_alpha=0.070000000000000007
+inactive_title_outer=#f9f9f9
+inactive_title_outer_alpha=0.55000000000000004
+inactive_title_inner=#000000
+inactive_title_inner_alpha=0.070000000000000007
+inactive_gradient_repeat_enabled=false
+inactive_gradient_repeat_direction_vertical=false
+inactive_gradient_repeat_direction_diagonal=false
+inactive_gradient_repeat_height=0
+inactive_separator_line=#000000
+inactive_separator_line_alpha=1
+inactive_window_frame_halo=#000000
+inactive_window_frame_halo_alpha=0
+inactive_window_highlight=#000000
+inactive_window_highlight_alpha=0
+inactive_window_shadow=#000000
+inactive_window_shadow_alpha=0
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+enable_maximised_colors=true
+gradient_repeat_disabled_maximised=false
+outer_maximised_color=#3e0c0c
+outer_maximised_alpha=0.32000000000000001
+inner_maximised_color=#dada71
+inner_maximised_alpha=1
+round_top_left=true
+round_top_right=false
+round_bottom_left=false
+round_bottom_right=false
+frame_radius=5.5
+titlebar_radius=11
+window_gap=0
+show_border_maximised=false
+show_border_minimised=true
+minimised_border=7
+enable_title_bar_dip=true
+enable_bar_dip_button_part=true
+title_bar_dip_title_width=80
+title_bar_dip_button_width=10
+title_bar_dip_radius=13
+round_tri=false
+enable_left_bar_dip=false
+left_bar_dip_radius=0
+enable_left_bar_dip_lower_part=false
+left_bar_dip_offset=0
+pixmaps_titlebarpart_enabled=false
+pixmaps_titlebarpart_repeat_enabled=false
+pixmaps_buttonpart_enabled=false
+pixmaps_buttonpart_repeat_enabled=false
+pixmaps_titlebar_enabled=false
+pixmaps_titlebar_repeat_enabled=false
+
+[vrunner_settings]
+active_title_left=#e0e0e0
+active_title_left_alpha=0.56000000000000005
+active_title_middle=#ffffff
+active_title_middle_alpha=0.89000000000000001
+active_title_right=#e0e0e0
+active_title_right_alpha=0.56000000000000005
+active_color_contrast=0.84999999999999998
+active_alpha_contrast=0.70999999999999996
+active_title_notch_position=0.46000000000000002
+active_curve_offset=0
+active_use_glow=false
+active_glow_inner=#000000
+active_glow_inner_alpha=0
+active_glow_radius=7
+active_separator_line=#000000
+active_separator_line_alpha=0
+active_window_halo=#000000
+active_window_halo_alpha=0
+active_window_highlight=#ffffff
+active_window_highlight_alpha=0.63
+active_window_shadow=#ffffff
+active_window_shadow_alpha=0.63
+active_contents_halo=#ffffff
+active_contents_halo_alpha=0.10000000000000001
+active_contents_highlight=#e1e1e1
+active_contents_highlight_alpha=0
+active_contents_shadow=#393939
+active_contents_shadow_alpha=0
+inactive_title_left=#000000
+inactive_title_left_alpha=0
+inactive_title_middle=#000000
+inactive_title_middle_alpha=0
+inactive_title_right=#000000
+inactive_title_right_alpha=0
+inactive_color_contrast=0
+inactive_alpha_contrast=0
+inactive_title_notch_position=0
+inactive_curve_offset=0
+inactive_use_glow=false
+inactive_glow_inner=#000000
+inactive_glow_inner_alpha=0
+inactive_glow_radius=7
+inactive_separator_line=#000000
+inactive_separator_line_alpha=0
+inactive_window_halo=#000000
+inactive_window_halo_alpha=0
+inactive_window_highlight=#ffffff
+inactive_window_highlight_alpha=0.63
+inactive_window_shadow=#ffffff
+inactive_window_shadow_alpha=0.63
+inactive_contents_halo=#000000
+inactive_contents_halo_alpha=0
+inactive_contents_highlight=#000000
+inactive_contents_highlight_alpha=0
+inactive_contents_shadow=#000000
+inactive_contents_shadow_alpha=0
+round_top_left=true
+round_top_right=true
+round_bottom_left=true
+round_bottom_right=true
+radius=6
+
+[engine_version]
+vrunner=0.2
+
+[engine]
+engine=vrunner
+
+[buttons]
+use_pixmap_buttons=true
+use_button_glow=false
+use_button_inactive_glow=false
+active_button=#ffffff
+active_button_alpha=1
+active_button_halo=#505050
+active_button_halo_alpha=0.75
+inactive_button=#cccccc
+inactive_button_alpha=0.39999997615814209
+inactive_button_halo=#202020
+inactive_button_halo_alpha=0.29999999999999999
+vertical_offset=3
+horizontal_offset=1
+
+[shadow]
+shadow_color=#101010
+shadow_opacity=0.01
+shadow_radius=0
+shadow_offset_x=-16
+shadow_offset_y=-16
+
+[borders]
+top=6
+bottom=6
+left=6
+right=6
+
+[titlebar]
+active_text=#ffffff
+active_text_alpha=1
+active_text_halo=#000000
+active_text_halo_alpha=0.40000000000000002
+inactive_text=#616161
+inactive_text_alpha=0
+inactive_text_halo=#7f7f7f
+inactive_text_halo_alpha=0
+titlebar_font=Sans Bold 10
+min_titlebar_height=14
+title_object_layout=IT::HNXC:Normal Layout
+
+[theme]
+creator=PingunZ
+description=A glassy vista theme.
+theme_version=0.5
+suggested=LiNsta, Murinna*
+version=0.1.0
diff --git a/releases/12/sabayon-artwork-extra/emerald/Xristal/theme.screenshot.png b/releases/12/sabayon-artwork-extra/emerald/Xristal/theme.screenshot.png
new file mode 100644
index 0000000..eb63768
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/emerald/Xristal/theme.screenshot.png differ
diff --git a/releases/12/sabayon-artwork-extra/make_compiz.sh b/releases/12/sabayon-artwork-extra/make_compiz.sh
new file mode 100755
index 0000000..ec0f688
--- /dev/null
+++ b/releases/12/sabayon-artwork-extra/make_compiz.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+SOURCE_SVG="../_devel/wallpaper_final.svg"
+
+PREVIEW_NAME="sabayonlinux.png"
+THEME_DIR="compiz"
+
+convert -resize 1920x1200 "${SOURCE_SVG}" "${THEME_DIR}/${PREVIEW_NAME}"
+
diff --git a/releases/12/sabayon-artwork-extra/misc/userface.png b/releases/12/sabayon-artwork-extra/misc/userface.png
new file mode 100644
index 0000000..19e5931
Binary files /dev/null and b/releases/12/sabayon-artwork-extra/misc/userface.png differ
diff --git a/releases/12/sabayon-artwork-gnome/Makefile b/releases/12/sabayon-artwork-gnome/Makefile
new file mode 100644
index 0000000..d75ae1c
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/Makefile
@@ -0,0 +1,28 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-gnome/background/gnome-toolbar.png b/releases/12/sabayon-artwork-gnome/background/gnome-toolbar.png
new file mode 100644
index 0000000..f9716f4
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/background/gnome-toolbar.png differ
diff --git a/releases/12/sabayon-artwork-gnome/gdm/logo.svg b/releases/12/sabayon-artwork-gnome/gdm/logo.svg
new file mode 100644
index 0000000..0e6e0a0
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/gdm/logo.svg
@@ -0,0 +1,151 @@
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/gdm/org.gnome.login-screen.gschema.override b/releases/12/sabayon-artwork-gnome/gdm/org.gnome.login-screen.gschema.override
new file mode 100644
index 0000000..9f564f9
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/gdm/org.gnome.login-screen.gschema.override
@@ -0,0 +1,3 @@
+[org.gnome.login-screen]
+logo='/usr/share/sabayon/gdm/logo.svg'
+enable-smartcard-authentication=false
diff --git a/releases/12/sabayon-artwork-gnome/gtk/ClearlooksSL/gtk-2.0/gtkrc b/releases/12/sabayon-artwork-gnome/gtk/ClearlooksSL/gtk-2.0/gtkrc
new file mode 100644
index 0000000..05ac147
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/gtk/ClearlooksSL/gtk-2.0/gtkrc
@@ -0,0 +1,453 @@
+
+# Please keep this gtkrc in sync with the other ones from Clearlooks based themes.
+
+gtk-color-scheme = "base_color:#ffffff\nfg_color:#000000\ntooltip_fg_color:#000000\nselected_bg_color:#86ABD9\nselected_fg_color:#ffffff\ntext_color:#1A1A1A\nbg_color:#EDECEB\ntooltip_bg_color:#F5F5B5"
+
+style "default" {
+ xthickness = 1
+ ythickness = 1
+
+ #######################
+ # Style Properties
+ #######################
+ GtkButton::child-displacement-x = 1
+ GtkButton::child-displacement-y = 1
+ GtkButton::default-border = { 0, 0, 0, 0 }
+
+ GtkCheckButton::indicator-size = 14
+
+ GtkPaned::handle-size = 6
+
+ GtkRange::trough-border = 0
+ GtkRange::slider-width = 15
+ GtkRange::stepper-size = 15
+
+ GtkScale::slider-length = 23
+ GtkScale::trough-side-details = 1
+
+ GtkScrollbar::min-slider-length = 30
+ GtkMenuBar::internal-padding = 0
+ GtkExpander::expander-size = 16
+ GtkToolbar::internal-padding = 1
+ GtkTreeView::expander-size = 14
+ GtkTreeView::vertical-separator = 0
+
+ GtkMenu::horizontal-padding = 0
+ GtkMenu::vertical-padding = 0
+
+ WnckTasklist::fade-overlay-rect = 0
+ # The following line hints to gecko (and possibly other appliations)
+ # that the entry should be drawn transparently on the canvas.
+ # Without this, gecko will fill in the background of the entry.
+ GtkEntry::honors-transparent-bg-hint = 1
+
+ ####################
+ # Color Definitions
+ ####################
+ bg[NORMAL] = @bg_color
+ bg[PRELIGHT] = shade (1.02, @bg_color)
+ bg[SELECTED] = @selected_bg_color
+ bg[INSENSITIVE] = @bg_color
+ bg[ACTIVE] = shade (0.9, @bg_color)
+
+ fg[NORMAL] = @fg_color
+ fg[PRELIGHT] = @fg_color
+ fg[SELECTED] = @selected_fg_color
+ fg[INSENSITIVE] = darker (@bg_color)
+ fg[ACTIVE] = @fg_color
+
+ text[NORMAL] = @text_color
+ text[PRELIGHT] = @text_color
+ text[SELECTED] = @selected_fg_color
+ text[INSENSITIVE] = darker (@bg_color)
+ text[ACTIVE] = @selected_fg_color
+
+ base[NORMAL] = @base_color
+ base[PRELIGHT] = shade (0.95, @bg_color)
+ base[SELECTED] = @selected_bg_color
+ base[INSENSITIVE] = @bg_color
+ base[ACTIVE] = shade (0.9, @selected_bg_color)
+
+ engine "clearlooks" {
+ colorize_scrollbar = TRUE
+ reliefstyle = 1
+ menubarstyle = 2
+ toolbarstyle = 1
+ animation = FALSE
+ radius = 3.0
+ style = GUMMY
+
+ # Set a hint to disable backward compatibility fallbacks.
+ hint = "use-hints"
+ }
+}
+
+style "wide" {
+ xthickness = 2
+ ythickness = 2
+}
+
+style "wider" {
+ xthickness = 3
+ ythickness = 3
+}
+
+style "spinbutton" {
+
+ engine "clearlooks" {
+ hint = "spinbutton"
+ }
+}
+
+style "scale" {
+ xthickness = 2
+ ythickness = 2
+
+ engine "clearlooks" {
+ hint = "scale"
+ }
+}
+
+style "vscale" {
+
+ engine "clearlooks" {
+ hint = "vscale"
+ }
+}
+
+style "hscale" {
+
+ engine "clearlooks" {
+ hint = "hscale"
+ }
+}
+
+style "scrollbar" {
+ xthickness = 2
+ ythickness = 2
+
+ engine "clearlooks" {
+ hint = "scrollbar"
+ }
+}
+
+style "hscrollbar" {
+
+ engine "clearlooks" {
+ hint = "hscrollbar"
+ }
+}
+
+style "vscrollbar" {
+
+ engine "clearlooks" {
+ hint = "vscrollbar"
+ }
+}
+
+style "notebook_bg" {
+
+ bg[NORMAL] = shade (1.02, @bg_color)
+}
+
+style "button" {
+ xthickness = 3
+ ythickness = 3
+
+ bg[NORMAL] = shade (1.04, @bg_color)
+ bg[PRELIGHT] = shade (1.06, @bg_color)
+ bg[ACTIVE] = shade (0.85, @bg_color)
+}
+
+# The color is changed by the notebook_bg style, this style
+# changes the x/ythickness
+style "notebook" {
+ xthickness = 3
+ ythickness = 3
+}
+
+style "statusbar" {
+
+ engine "clearlooks" {
+ hint = "statusbar"
+ }
+}
+
+style "comboboxentry" {
+
+ engine "clearlooks" {
+ # Note:
+ # If you set the appears-as-list option on comboboxes in the theme,
+ # then you should set this hint on the combobox instead.
+ hint = "comboboxentry"
+ }
+}
+
+style "menubar" {
+
+ engine "clearlooks" {
+ hint = "menubar"
+ }
+}
+
+style "menu" {
+ xthickness = 0
+ ythickness = 0
+
+ bg[NORMAL] = shade (1.08, @bg_color)
+
+ engine "clearlooks" {
+ radius = 0.0
+ }
+}
+
+style "menu_item" {
+ xthickness = 2
+ ythickness = 3
+
+ fg[PRELIGHT] = @selected_fg_color
+}
+
+# This style is there to modify the separator menu items. The goals are:
+# 1. Get a specific height.
+# 2. The line should go to the edges (ie. no border at the left/right)
+style "separator_menu_item" {
+ xthickness = 1
+ ythickness = 0
+
+ GtkSeparatorMenuItem::horizontal-padding = 0
+ GtkWidget::wide-separators = 1
+ GtkWidget::separator-width = 1
+ GtkWidget::separator-height = 7
+}
+
+style "frame_title" {
+
+ fg[NORMAL] = lighter (@fg_color)
+}
+
+style "treeview" {
+
+ engine "clearlooks" {
+ hint = "treeview"
+ }
+}
+
+# The almost useless progress bar style
+style "progressbar" {
+ xthickness = 1
+ ythickness = 1
+
+ fg[PRELIGHT] = @selected_fg_color
+
+ engine "clearlooks" {
+ # Explicitly set the radius for the progress bars inside menu items.
+ radius = 3.0
+
+ hint = "progressbar"
+ }
+}
+
+# This style is based on the default style, so that the colors from the button
+# style are overriden again.
+style "treeview_header" = "default" {
+ xthickness = 2
+ ythickness = 1
+
+ engine "clearlooks" {
+ hint = "treeview-header"
+ }
+}
+
+style "tooltips" {
+ xthickness = 4
+ ythickness = 4
+
+ bg[NORMAL] = @tooltip_bg_color
+ fg[NORMAL] = @tooltip_fg_color
+}
+
+style "nautilus_location" {
+
+ bg[NORMAL] = mix (0.60, shade (1.05, @bg_color), @selected_bg_color)
+}
+
+# Wrokaroudn style for places where the text color is used instead of the fg color.
+style "text_is_fg_color_workaround" {
+
+ text[NORMAL] = @fg_color
+ text[PRELIGHT] = @fg_color
+ text[SELECTED] = @selected_fg_color
+ text[ACTIVE] = @fg_color
+ text[INSENSITIVE] = darker (@bg_color)
+}
+
+# Workaround style for menus where the text color is used instead of the fg color.
+style "menuitem_text_is_fg_color_workaround" {
+
+ text[NORMAL] = @fg_color
+ text[PRELIGHT] = @selected_fg_color
+ text[SELECTED] = @selected_fg_color
+ text[ACTIVE] = @fg_color
+ text[INSENSITIVE] = darker (@bg_color)
+}
+
+# Workaround style for places where the fg color is used instead of the text color.
+style "fg_is_text_color_workaround" {
+
+ fg[NORMAL] = @text_color
+ fg[PRELIGHT] = @text_color
+ fg[SELECTED] = @selected_fg_color
+ fg[ACTIVE] = @selected_fg_color
+ fg[INSENSITIVE] = darker (@bg_color)
+}
+
+# Style to set the toolbar to use a flat style. This is because the "New" button in
+# Evolution is not drawn transparent. So if there is a gradient in the background it will
+# look really wrong.
+# See http://bugzilla.gnome.org/show_bug.cgi?id=446953.
+style "evo_new_button_workaround" {
+
+ engine "clearlooks" {
+ toolbarstyle = 0
+ }
+}
+
+#style "panel-menubar2" {
+# text[NORMAL] = "#ffff00" #
+# text[PRELIGHT] = "#ffff00" #
+# text[ACTIVE] = "#ffff00" # white
+# text[SELECTED] = "#ffff00" # white
+# text[INSENSITIVE] = "#b5b3ac" # dark beige
+#}
+
+###############################################################################
+# The following part of the gtkrc applies the different styles to the widgets.
+###############################################################################
+
+# The default style is applied to every widget
+class "GtkWidget" style "default"
+
+class "GtkSeparator" style "wide"
+class "GtkFrame" style "wide"
+class "GtkCalendar" style "wide"
+class "GtkEntry" style "wider"
+
+class "GtkSpinButton" style "spinbutton"
+class "GtkScale" style "scale"
+class "GtkVScale" style "vscale"
+class "GtkHScale" style "hscale"
+class "GtkScrollbar" style "scrollbar"
+class "GtkHScrollbar" style "hscrollbar"
+class "GtkVScrollbar" style "vscrollbar"
+
+# General matching follows. The order is choosen so that the right styles override
+# each other. EG. progressbar needs to be more important than the menu match.
+widget_class "*" style "notebook_bg"
+# This is not perfect, it could be done better.
+# (That is modify *every* widget in the notebook, and change those back that
+# we really don't want changed)
+widget_class "**" style "notebook_bg"
+widget_class "**" style "notebook_bg"
+widget_class "**" style "notebook_bg"
+
+widget_class "*" style "button"
+widget_class "*" style "notebook"
+widget_class "**" style "statusbar"
+
+widget_class "**" style "comboboxentry"
+widget_class "**" style "comboboxentry"
+
+widget_class "**" style "menubar"
+widget_class "**" style "menu"
+widget_class "**" style "menu_item"
+widget_class "**" style "separator_menu_item"
+
+widget_class "*.." style "frame_title"
+widget_class "*.*" style "treeview"
+
+widget_class "*" style "progressbar"
+
+# Treeview headers (and similar stock GTK+ widgets)
+widget_class "*.." style "treeview_header"
+widget_class "*.." style "treeview_header"
+widget_class "*.." style "treeview_header"
+widget_class "*.." style "treeview_header"
+
+# The window of the tooltip is called "gtk-tooltip"
+##################################################################
+# FIXME:
+# This will not work if one embeds eg. a button into the tooltip.
+# As far as I can tell right now we will need to rework the theme
+# quite a bit to get this working correctly.
+# (It will involve setting different priorities, etc.)
+##################################################################
+widget "gtk-tooltip*" style "tooltips"
+
+##########################################################################
+# Following are special cases and workarounds for issues in applications.
+##########################################################################
+
+# Workaround for the evolution ETable (bug #527532)
+widget_class "*.ETable.ECanvas" style "treeview_header"
+# Workaround for the evolution ETree
+widget_class "*.ETree.ECanvas" style "treeview_header"
+
+# Special case the nautilus-extra-view-widget
+# ToDo: A more generic approach for all applications that have a widget like this.
+widget "*.nautilus-extra-view-widget" style : highest "nautilus_location"
+
+# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
+# Note that this work around assumes that the combobox is _not_ in appears-as-list mode.
+widget_class "*.." style "text_is_fg_color_workaround"
+# This is the part of the workaround that fixes the menus
+widget "*.gtk-combobox-popup-menu.*" style "menuitem_text_is_fg_color_workaround"
+
+# Work around the usage of GtkLabel inside GtkListItems to display text.
+# This breaks because the label is shown on a background that is based on the base color.
+widget_class "**" style "fg_is_text_color_workaround"
+# GtkCList also uses the fg color to draw text on top of the base colors.
+widget_class "*" style "fg_is_text_color_workaround"
+# Nautilus when renaming files, and maybe other places.
+widget_class "*" style "fg_is_text_color_workaround"
+
+# See the documentation of the style.
+widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "evo_new_button_workaround"
+
+
+###################################################
+# Sabayon Modifications to override Panel settings
+###################################################
+style "panel"
+{
+ fg[NORMAL] = "#ffffff"
+ fg[PRELIGHT] = "#000000"
+ fg[ACTIVE] = "#000000"
+ fg[SELECTED] = "#333333"
+ fg[INSENSITIVE] = "#2257B1"
+ bg[NORMAL] = "#222222"
+ bg[PRELIGHT] = "#2E60B0"
+ bg[ACTIVE] = "#144696"
+ bg[SELECTED] = "#2E60B0"
+ bg[INSENSITIVE] = "#000000"
+# base[NORMAL] = "#00ffff"
+# base[PRELIGHT] = "#ffff00"
+# base[ACTIVE] = "#ffff00"
+# base[SELECTED] = "#00ff00"
+# base[INSENSITIVE] = "#00ff00"
+# text[NORMAL] = "#ffffff"
+# text[PRELIGHT] = "#ffffff"
+# text[ACTIVE] = "#ffff00"
+# text[SELECTED] = "#ffffff"
+# text[INSENSITIVE] = "#304568"
+}
+widget "*PanelWidget*" style "panel"
+widget "*PanelApplet*" style "panel"
+widget "*gnome-panel*menu*" style "panel"
+widget_class "*Applet*" style "panel"
+widget_class "PanelToplevel.*" style "panel"
+widget_class "PanelApp*" style "panel"
+class "*notif*" style "panel"
+class "*Notif*" style "panel"
+class "*Tray*" style "panel"
+class "*tray*" style "panel"
diff --git a/releases/12/sabayon-artwork-gnome/gtk/Murrina-CleanEyes/gtk-2.0/gtkrc b/releases/12/sabayon-artwork-gnome/gtk/Murrina-CleanEyes/gtk-2.0/gtkrc
new file mode 100755
index 0000000..e0c4b2f
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/gtk/Murrina-CleanEyes/gtk-2.0/gtkrc
@@ -0,0 +1,183 @@
+
+
+style "theme-default"
+{
+ GtkButton ::default_border = { 0, 0, 0, 0 }
+ GtkRange ::trough_border = 0
+ GtkPaned ::handle_size = 6
+ GtkRange ::slider_width = 15
+ GtkRange ::stepper_size = 15
+
+ GtkScrollbar ::min_slider_length = 30
+ GtkCheckButton ::indicator_size = 14
+ GtkMenuBar ::internal-padding = 0
+ GtkTreeView ::expander_size = 14
+ GtkExpander ::expander_size = 16
+ GtkScale ::slider-length = 24
+
+ xthickness = 1
+ ythickness = 1
+
+ fg[NORMAL] = "#000000" # Metacity and mouseover, Most text
+ fg[PRELIGHT] = "#202020" # Text when mouseover
+ fg[ACTIVE] = "#000000" # Text when mouseclicking button, Tabs, Active window list
+ fg[SELECTED] = "#ffffff" # Metacity X when window selected
+ fg[INSENSITIVE] = "#a8a8a8" # Insensitive Text
+
+ bg[NORMAL] = "#f7f7f7" # Normal Background, inactive Metacity bar, buttons
+ bg[PRELIGHT] = "#f6f7f8" # Mouseover buttons
+ bg[ACTIVE] = "#D6D6D6" # Mouseclicking, Tabs, active window list
+ bg[SELECTED] = "#0087FF" # Metacity Bar
+ bg[INSENSITIVE] = "#d9d9d9" # Insensitive buttons
+
+ base[NORMAL] = "#ffffff" # Background, most
+ base[PRELIGHT] = "#1964B2" # Mouseover menu
+ base[ACTIVE] = "#c0c0c0" # Menu active item in inactive window
+ base[SELECTED] = "#0087FF" # Menu active item in active window
+ base[INSENSITIVE] = "#f5f5f5" # Background, insensitive
+
+ text[NORMAL] = "#000000" # Text in window
+ text[PRELIGHT] = "#000000" # Text on Mouseover
+ text[ACTIVE] = "#000000" # Active text in inactive window
+ text[SELECTED] = "#ffffff" # Active text in active window
+ text[INSENSITIVE] = "#a8a8a8" # Unknown
+
+
+ engine "murrine"
+ {
+ menuitemstyle = 1# 0 = flat, 1 = glassy, 2 = striped
+ scrollbar_color = "#e0e0e0"
+ contrast = 1.0
+ glazestyle = 0 # 0 = flat hilight, 1 = curved hilight, 2 = concave style
+ menubarstyle = 3 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
+ menubaritemstyle = 0 # 0 = menuitem look, 1 = button look
+ menuitemstyle = 1 # 0 = flat, 1 = glassy, 2 = striped
+ listviewheaderstyle = 1# 0 = flat, 1 = glassy
+ animation = TRUE # FALSE = disabled, TRUE = enabled
+ }
+}
+
+
+style "theme-wide" = "theme-default"
+{
+ xthickness = 2
+ ythickness = 2
+}
+
+style "theme-wider" = "theme-default"
+{
+ xthickness = 3
+ ythickness = 3
+}
+
+style "theme-entry" = "theme-wider"
+{
+ # bg[SELECTED] = "#0087FF"
+}
+
+style "theme-button" = "theme-wider"
+{
+ bg[NORMAL] = "#E3E3E5"
+ bg[ACTIVE] = "#cacaca"
+}
+
+style "theme-notebook" = "theme-wide"
+{
+
+
+}
+
+style "theme-tasklist" = "theme-default"
+{
+ xthickness = 5
+ ythickness = 3
+}
+
+style "theme-menu" = "theme-default"
+{
+ xthickness = 2
+ ythickness = 1
+}
+
+style "theme-menu-item" = "theme-default"
+{
+ ythickness = 3
+ fg[PRELIGHT] = "#ffffff"
+ text[PRELIGHT] = "#ffffff"
+}
+
+style "theme-menubar" = "theme-default"
+{
+ bg[NORMAL] = "#f6f6f6"
+}
+
+style "theme-menubar-item"
+{
+ ythickness = 4
+ bg[PRELIGHT] = "#0087FF"
+}
+
+style "theme-tree" = "theme-default"
+{
+ xthickness = 2
+ ythickness = 2
+}
+
+style "theme-frame-title" = "theme-default"
+{
+ fg[NORMAL] = "#404040"
+}
+
+style "theme-tooltips" = "theme-default"
+{
+ xthickness = 4
+ ythickness = 4
+ bg[NORMAL] = "#fffcdb"
+}
+
+style "theme-progressbar" = "theme-wide"
+{
+ xthickness = 1
+ ythickness = 1
+ fg[PRELIGHT] = "#ffffff"
+}
+
+style "theme-combo" = "theme-button"
+{
+}
+
+
+# widget styles
+class "GtkWidget" style "theme-default"
+class "GtkButton" style "theme-button"
+class "GtkScale" style "theme-button"
+class "GtkCombo" style "theme-button"
+class "GtkRange" style "theme-wide"
+class "GtkFrame" style "theme-wide"
+class "GtkMenu" style "theme-menu"
+class "GtkEntry" style "theme-entry"
+class "GtkMenuItem" style "theme-menu-item"
+class "GtkNotebook" style "theme-notebook"
+class "GtkProgressBar" style "theme-progressbar"
+class "*MenuBar*" style "theme-menubar"
+
+widget_class "*MenuItem.*" style "theme-menu-item"
+widget_class "*MenuBar.*" style "theme-menubar-item"
+
+# combobox stuff
+widget_class "*.GtkComboBox.GtkButton" style "theme-combo"
+widget_class "*.GtkCombo.GtkButton" style "theme-combo"
+# tooltips stuff
+widget_class "*.tooltips.*.GtkToggleButton" style "theme-tasklist"
+widget "gtk-tooltips" style "theme-tooltips"
+
+# treeview stuff
+widget_class "*.GtkTreeView.GtkButton" style "theme-tree"
+widget_class "*.GtkCTree.GtkButton" style "theme-tree"
+widget_class "*.GtkList.GtkButton" style "theme-tree"
+widget_class "*.GtkCList.GtkButton" style "theme-tree"
+widget_class "*.GtkFrame.GtkLabel" style "theme-frame-title"
+
+# notebook stuff
+widget_class "*.GtkNotebook.*.GtkEventBox" style "theme-notebook"
+widget_class "*.GtkNotebook.*.GtkViewport" style "theme-notebook"
diff --git a/releases/12/sabayon-artwork-gnome/gtk/Sabayon/index.theme b/releases/12/sabayon-artwork-gnome/gtk/Sabayon/index.theme
new file mode 100644
index 0000000..36f067a
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/gtk/Sabayon/index.theme
@@ -0,0 +1,15 @@
+[Desktop Entry]
+Name=Sabayon
+Type=X-GNOME-Metatheme
+Comment=Offical Sabayon Theme
+
+[X-GNOME-Metatheme]
+GtkTheme=Equinox Evolution
+MetacityTheme=Equinox Evolution Squared
+IconTheme=elementary
+GtkColorScheme=fg_color:#333333,bg_color:#DDDDDD,base_color:#FFFFFF,text_color:#333333,selected_bg_color:#5188E7,selected_fg_color:#FFFFFF,tooltip_fg_color:#EEEEEE,tooltip_bg_color:#222222,link_color:#0062dc
+CursorTheme=whiteglass
+CursorSize=16
+NotificationTheme=slider
+BackgroundImage=/usr/share/backgrounds/sabayonlinux.png
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/close.png b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/close.png
new file mode 100644
index 0000000..b6da91e
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/close.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/close_small.png b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/close_small.png
new file mode 100644
index 0000000..06a64ff
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/close_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/maximize.png b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/maximize.png
new file mode 100644
index 0000000..1f00da5
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/maximize.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/menu.png b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/menu.png
new file mode 100644
index 0000000..08470ba
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/menu.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/menu_small.png b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/menu_small.png
new file mode 100644
index 0000000..17f8480
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/menu_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/metacity-theme-1.xml
new file mode 100755
index 0000000..de18f21
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,704 @@
+
+
+
+
+
+ Blended
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/metacity-theme-1.xml~ b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/metacity-theme-1.xml~
new file mode 100755
index 0000000..f738f1e
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/metacity-theme-1.xml~
@@ -0,0 +1,704 @@
+
+
+
+
+
+ Blended
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/minimize.png b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/minimize.png
new file mode 100644
index 0000000..512feb8
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/minimize.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/restore.png b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/restore.png
new file mode 100644
index 0000000..9c8dae9
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/Blended/metacity-1/restore.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/close.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/close.png
new file mode 100644
index 0000000..b6da91e
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/close.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/close_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/close_small.png
new file mode 100644
index 0000000..06a64ff
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/close_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/maximize.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/maximize.png
new file mode 100644
index 0000000..1f00da5
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/maximize.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/menu.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/menu.png
new file mode 100644
index 0000000..08470ba
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/menu.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/menu_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/menu_small.png
new file mode 100644
index 0000000..17f8480
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/menu_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/metacity-theme-1.xml
new file mode 100755
index 0000000..7116ae1
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,708 @@
+
+
+
+
+
+ BlendedDoubleRound
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/metacity-theme-1.xml~ b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/metacity-theme-1.xml~
new file mode 100755
index 0000000..a5e862f
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/metacity-theme-1.xml~
@@ -0,0 +1,708 @@
+
+
+
+
+
+ BlendedDoubleRound
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/minimize.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/minimize.png
new file mode 100644
index 0000000..512feb8
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/minimize.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/restore.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/restore.png
new file mode 100644
index 0000000..9c8dae9
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedDoubleRound/metacity-1/restore.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/close_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/close_small.png
new file mode 100644
index 0000000..06a64ff
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/close_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/maximize_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/maximize_small.png
new file mode 100644
index 0000000..48ae490
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/maximize_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/menu_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/menu_small.png
new file mode 100644
index 0000000..17f8480
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/menu_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/metacity-theme-1.xml
new file mode 100755
index 0000000..3b64301
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,655 @@
+
+
+
+
+
+ BlendedSmall
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/metacity-theme-1.xml~ b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/metacity-theme-1.xml~
new file mode 100755
index 0000000..756b62a
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/metacity-theme-1.xml~
@@ -0,0 +1,655 @@
+
+
+
+
+
+ BlendedSmall
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/minimize_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/minimize_small.png
new file mode 100644
index 0000000..335d800
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/minimize_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/restore_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/restore_small.png
new file mode 100644
index 0000000..2d6a471
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmall/metacity-1/restore_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/close_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/close_small.png
new file mode 100644
index 0000000..06a64ff
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/close_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/maximize_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/maximize_small.png
new file mode 100644
index 0000000..48ae490
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/maximize_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/menu_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/menu_small.png
new file mode 100644
index 0000000..17f8480
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/menu_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/metacity-theme-1.xml
new file mode 100755
index 0000000..11fbee6
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,659 @@
+
+
+
+
+
+ BlendedSmallDoubleRound
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/metacity-theme-1.xml~ b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/metacity-theme-1.xml~
new file mode 100755
index 0000000..496f541
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/metacity-theme-1.xml~
@@ -0,0 +1,659 @@
+
+
+
+
+
+ BlendedSmallDoubleRound
+ Eric Matthews
+ Eric Matthews, 2005
+ Jan 2006
+ A blended window border theme
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/minimize_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/minimize_small.png
new file mode 100644
index 0000000..335d800
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/minimize_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/restore_small.png b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/restore_small.png
new file mode 100644
index 0000000..2d6a471
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/BlendedSmallDoubleRound/metacity-1/restore_small.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/Thumbs.db b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/Thumbs.db
new file mode 100644
index 0000000..d894c5b
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/Thumbs.db differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/handle-h.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/handle-h.png
new file mode 100644
index 0000000..fa6c44f
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/handle-h.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/handle-v.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/handle-v.png
new file mode 100644
index 0000000..fa6c44f
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/handle-v.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-22.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-22.png
new file mode 100644
index 0000000..1511261
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-22.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-24.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-24.png
new file mode 100644
index 0000000..6d635a1
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-24.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-30.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-30.png
new file mode 100644
index 0000000..eafa65c
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg-30.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg.png
new file mode 100644
index 0000000..5821593
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-bg.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-active.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-active.png
new file mode 100644
index 0000000..25d953a
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-active.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-hover.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-hover.png
new file mode 100644
index 0000000..f652189
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-hover.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-inactive.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-inactive.png
new file mode 100644
index 0000000..073f0cd
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/Panel/panel-button-inactive.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/gtkrc b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/gtkrc
new file mode 100644
index 0000000..c0b37e0
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/gtkrc
@@ -0,0 +1,560 @@
+#
+# MurrineClearGlass Blue GTK theme
+#
+
+# Set GtkSettings color scheme property.
+# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
+
+include "panel.rc"
+
+gtk_color_scheme =
+"fg_color:#222222\nbg_color:#e8e8e8\nbase_color:#f5f5f5\ntext_color:#292929\nselected_bg_color:#1793d1\nselected_fg_color:#ffffff\ntooltip_bg_color:#efe6c3\ntooltip_fg_color:#333333"
+
+gtk-icon-sizes = "gtk-button=16,16"
+
+style "default"
+{
+ ########
+ # Style Properties
+ ########
+ GtkButton ::child-displacement-x = 1
+ GtkButton ::child-displacement-y = 1
+ GtkButton ::default-border = { 0, 0, 0, 0 }
+ GtkCheckButton ::indicator-size = 14
+
+ GtkPaned ::handle-size = 6
+
+ GtkRange ::trough-border = 3
+ GtkRange ::slider-width = 10
+ GtkRange ::stepper-size = 10
+
+ GtkScale ::slider-length = 20
+ GtkScale ::slider-width = 10
+ GtkScale ::trough-side-details = 0
+ GtkScrollbar ::min-slider-length = 30
+
+ GtkMenuBar ::internal-padding = 0
+ GtkExpander ::expander-size = 16
+ GtkToolbar ::internal-padding = 1
+ GtkTreeView ::expander-size = 14
+ GtkTreeView ::vertical-separator = 0
+
+ GtkMenu ::horizontal-padding = 0
+ GtkMenu ::vertical-padding = 0
+
+ GtkScrolledWindow::scrollbar-spacing = 3
+
+ GtkNotebook::tab-curvature = 3
+ GtkNotebook::tab-overlap = 4
+
+ # Glow the tasklist by changing the color, instead of overlaying it with a rectangle
+ WnckTasklist ::fade-overlay-rect = 0
+ #WnckTasklist ::fade-loop-time = 5.0
+ #WnckTasklist ::fade-opacity = 0.7
+
+ xthickness = 1
+ ythickness = 1
+
+
+ fg[NORMAL] = @fg_color
+ fg[PRELIGHT] = @fg_color
+ fg[SELECTED] = @selected_fg_color
+ fg[INSENSITIVE] = darker (@bg_color)
+ fg[ACTIVE] = @fg_color
+
+ bg[NORMAL] = @bg_color
+ bg[ACTIVE] = shade (1.02, @bg_color)
+ bg[PRELIGHT] = shade (1.05, @bg_color)
+ bg[SELECTED] = @selected_bg_color
+ bg[INSENSITIVE] = shade (1.03,@bg_color)
+
+ base[NORMAL] = @base_color
+ base[PRELIGHT] = @base_color
+ base[SELECTED] = @selected_bg_color
+ base[INSENSITIVE] = @bg_color
+ base[ACTIVE] = shade (0.9, @selected_bg_color)
+
+ text[NORMAL] = @text_color
+ text[PRELIGHT] = @text_color
+ text[SELECTED] = @selected_fg_color
+ text[INSENSITIVE] = darker (@bg_color)
+ text[ACTIVE] = @selected_fg_color
+
+ engine "murrine"
+ {
+ style = MURRINE # engine style options: CANDIDO, MURRINE, MIST, MURRINE, NODOKA
+ rgba = FALSE # FALSE = disabled, TRUE = enabled
+ animation = TRUE
+ colorize_scrollbar = FALSE
+ contrast = 1.0 # 0.8 for less contrast, more than 1.0 for more contrast on borders
+ glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave style, 3 = top curved highlight, 4 = beryl highlight
+ gradients = TRUE # FALSE = disabled, TRUE = enabled
+ gradient_shades = {1.07,1.01,1.01,0.9} # default: {1.1,1.0,1.0,1.1}
+ highlight_ratio = 1.2 # set highlight amount for buttons or widgets
+ lightborder_ratio = 1.2 # sets lightborder amount for buttons or widgets
+ lightborderstyle = 0 # 0 = lightborder on top side, 1 = lightborder on all sides
+ listviewheaderstyle = 1 # 0 = flat, 1 = glassy, 2 = raised
+ listviewstyle = 0 # 0 = nothing, 1 = dotted
+ menubaritemstyle = 1 # 0 = menuitem look, 1 = button look
+ menubarstyle = 1 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
+ menuitemstyle = 1 # 0 = flat, 1 = glassy, 2 = striped
+ menustyle = 1 # 0 = no vertical menu stripe, 1 = display vertical menu stripe
+ reliefstyle = 2 # 0 = flat, 1 = inset, 2 = shadow
+ roundness = 1 # 0 = squared, 1 = old default, more will increase roundness
+ scrollbarstyle = 4 # 0 = nothing, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles
+ sliderstyle = 0 # 0 = nothing added, 1 = handles
+ stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles, 2 = unknown
+ toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient
+ }
+}
+
+style "evolution-hack" = "default"
+{
+ bg[NORMAL] = shade (1.14, @bg_color) # Color for evo treeview headers.
+ bg[PRELIGHT] = shade (1.18, @bg_color) # Color for evo treeview header prelight.
+ bg[ACTIVE] = shade (0.80, @bg_color) # Color for unfocused evo selected items.
+ bg[SELECTED] = @selected_bg_color # Color for evo selected items.
+ fg[ACTIVE] = @selected_fg_color
+ fg[SELECTED] = @selected_fg_color
+}
+
+style "handle" # Removes the ugly panel handle when a pixmap panel is used
+{
+engine "pixmap"
+ {
+ image
+ {
+ function = HANDLE
+ file = "Panel/handle-v.png"
+ border = { 0, 0, 0, 0 }
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+ image
+ {
+ function = HANDLE
+ file = "Panel/handle-h.png"
+ border = { 0, 0, 0, 0 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+ }
+}
+class "PanelAppletFrame" style "handle"
+
+style "wide"
+{
+ xthickness = 2
+ ythickness = 2
+}
+
+style "wider"
+{
+ xthickness = 3
+ ythickness = 3
+}
+
+style "widest"
+{
+ xthickness = 4
+ ythickness = 4
+}
+
+style "frame" = "wide"
+{
+ GtkWidget::draw-border = {1,1,1,1}
+}
+
+style "button"
+{
+ xthickness = 3
+ ythickness = 3
+
+ bg[NORMAL] = shade (1.0, @bg_color)
+ bg[PRELIGHT] = shade (1.1, @bg_color)
+ bg[ACTIVE] = shade (0.95, @bg_color)
+}
+
+style "entry" = "wider" {
+}
+
+style "notebook-bg" = "wider"
+{
+ bg[NORMAL] = shade (1.05, @bg_color)
+ bg[ACTIVE] = shade (0.95, @bg_color)
+}
+
+style "notebook" = "notebook-bg"
+{
+ engine "clearlooks"
+ {
+ radius = 1.5
+ style = GUMMY
+ }
+}
+
+style "tasklist"
+{
+ xthickness = 5
+ ythickness = 3
+}
+
+style "menubar"
+{
+ bg[SELECTED] = @selected_bg_color
+ bg[NORMAL] = "#171717"
+ bg[PRELIGHT] = @selected_bg_color
+ bg[ACTIVE] = "#333333"
+ bg[INSENSITIVE] = "#333333"
+ fg[NORMAL] = "#D4D4D4"
+ fg[PRELIGHT] = @selected_fg_color
+ fg[SELECTED] = @selected_fg_color
+ fg[ACTIVE] = @selected_fg_color
+ fg[INSENSITIVE] = "#333333"
+ text[NORMAL] = @text_color
+ text[PRELIGHT] = @selected_fg_color
+ text[SELECTED] = @selected_fg_color
+ text[ACTIVE] = @selected_fg_color
+ text[INSENSITIVE] = "#333333"
+}
+
+style "menu"
+{
+ xthickness = 0
+ ythickness = 0
+
+ bg[SELECTED] = @selected_bg_color
+ bg[NORMAL] = "#171717" #"#3C3C3C"
+ bg[PRELIGHT] = @selected_bg_color
+ bg[ACTIVE] = "#171717"
+ bg[INSENSITIVE] = "#171717"
+ fg[NORMAL] = "#e8e8e8"
+ fg[PRELIGHT] = @selected_fg_color
+ fg[SELECTED] = @selected_fg_color
+ fg[ACTIVE] = @selected_fg_color
+ fg[INSENSITIVE] = "#333333"
+ text[NORMAL] = @text_color
+ text[PRELIGHT] = @selected_fg_color
+ text[SELECTED] = @selected_fg_color
+ text[ACTIVE] = @selected_fg_color
+ text[INSENSITIVE] = "#333333"
+
+ engine "murrine" {
+ roundness = 0
+ rgba = FALSE
+ }
+}
+
+style "menu-item"
+{
+ xthickness = 2
+ ythickness = 3
+
+ bg[SELECTED] = @selected_bg_color
+ bg[PRELIGHT] = @selected_bg_color
+ fg[SELECTED] = @selected_fg_color
+ fg[PRELIGHT] = @selected_fg_color
+
+ fg[NORMAL] = "#e8e8e8" #Xfce4-panel necessary fix
+}
+
+style "separator-menu-item"
+{
+ GtkSeparatorMenuItem::horizontal-padding = 0
+ # We are setting the desired height by using wide-separators
+ # There is no other way to get the odd height ...
+ GtkWidget::wide-separators = 1
+ GtkWidget::separator-width = 1
+ GtkWidget::separator-height = 1
+ xthickness = 1
+ ythickness = 0
+
+ engine "murrine" {
+ contrast = 0.9
+ rgba = FALSE
+ }
+}
+
+style "treeview"
+{
+ #base[NORMAL] = mix(0.95, @base_color, @selected_bg_color)
+}
+
+# Based on the default style so that the colors from the button
+# style are overriden again.
+style "treeview-header"
+{
+ xthickness = 2
+ ythickness = 1
+
+ bg[NORMAL] = shade(1.07, @bg_color)
+ bg[PRELIGHT] = shade(1.10, @bg_color)
+ bg[ACTIVE] = mix (0.3, shade (1.1, @selected_bg_color), @bg_color)
+}
+
+style "frame-title"
+{
+ fg[NORMAL] = lighter (@fg_color)
+}
+
+style "tooltips"
+{
+ xthickness = 4
+ ythickness = 4
+
+ bg[NORMAL] = @tooltip_bg_color
+ bg[ACTIVE] = @tooltip_bg_color
+ bg[PRELIGHT] = shade (0.85, @tooltip_bg_color)
+ bg[SELECTED] = shade (0.85, @tooltip_bg_color)
+ bg[INSENSITIVE] = @tooltip_bg_color
+
+ fg[NORMAL] = @tooltip_fg_color
+ fg[ACTIVE] = @tooltip_fg_color
+ fg[PRELIGHT] = darker (@tooltip_fg_color)
+ fg[SELECTED] = darker (@tooltip_fg_color)
+ fg[INSENSITIVE] = @tooltip_fg_color
+}
+
+style "progressbar"
+{
+ xthickness = 0
+ ythickness = 0
+
+ fg[PRELIGHT] = lighter (@selected_fg_color)
+
+ engine "murrine"
+ {
+ roundness = 0
+ highlight_ratio = 1.20
+ rgba = FALSE
+ }
+}
+
+style "statusbar"
+{
+}
+
+style "comboboxentry"
+{
+ # NOTE:
+ # If you set the appears-as-list option on comboboxes in the theme
+ # you should set this hint on the combobox instead.
+}
+
+style "spinbutton"
+{
+}
+
+style "scale"
+{
+ bg[NORMAL] = shade(1.1, @bg_color)
+ bg[PRELIGHT] = shade(1.25, @bg_color)
+
+ engine "murrine" {
+ roundness = 1
+ style = CANDIDO
+ }
+}
+
+style "hscale"
+{
+}
+
+style "vscale"
+{
+}
+
+style "scrollbar"
+{
+ bg[NORMAL] = shade (1.0, @bg_color)
+
+ engine "murrine" {
+ highlight_ratio = 2.0
+ scrollbar_color = "#333333"
+ glazestyle = 0
+ roundness = 2
+ rgba = FALSE
+ }
+}
+
+style "nautilus-location"
+{
+ bg[NORMAL] = mix(0.60, shade (1.05,@bg_color), @selected_bg_color)
+}
+
+style "radiocheck"
+{
+ text[NORMAL] = "#ffffff"
+ text[PRELIGHT] = "#ffffff"
+}
+
+#style "panel"
+#{
+# xthickness = 0
+# ythickness = 0
+#
+# fg[NORMAL] = "#ffffff"
+# fg[PRELIGHT] = "#ffffff"
+# fg[ACTIVE] = "#ffffff"
+# bg[NORMAL] = "#222222"
+# bg[PRELIGHT] = @selected_bg_color
+# bg[ACTIVE] = "#111111"
+#
+# engine "murrine" {
+# roundness = 0
+# rgba = FALSE
+# }
+#}
+
+#########################################
+# Matches
+#########################################
+
+# Default style is applied to every widget
+class "GtkWidget" style "default"
+
+# Increase the x/ythickness in some widgets
+class "GtkToolbar" style "default"
+class "GtkRange" style "wide"
+class "GtkFrame" style "wide"
+class "GtkSeparator" style "wide"
+class "GtkCalendar" style "wide"
+class "GtkEntry" style "entry"
+
+class "GtkSpinButton" style "spinbutton"
+class "GtkScale" style "scale"
+class "GtkVScale" style "vscale"
+class "GtkHScale" style "hscale"
+class "GtkScrollbar" style "scrollbar"
+class "GtkVScrollbar" style "scrollbar"
+class "GtkHScrollbar" style "scrollbar"
+
+
+# General matching following, the order is choosen so that the right styles override each other
+# eg. progressbar needs to be more important then the menu match.
+
+# This is not perfect, it could be done better
+# (That is modify *every* widget in the notebook, and change those back that
+# we really don't want changed)
+widget_class "**" style "notebook-bg"
+widget_class "**" style "notebook-bg"
+widget_class "**" style "notebook-bg"
+
+widget_class "*" style "button"
+widget_class "*" style "notebook"
+widget_class "**" style "statusbar"
+
+widget_class "**" style "comboboxentry"
+widget_class "**" style "comboboxentry"
+
+widget_class "**" style "menubar"
+widget_class "**" style "menu"
+widget_class "**" style "menu-item"
+widget_class "**" style "separator-menu-item"
+
+widget_class "*.." style "frame-title"
+widget_class "*.*" style "treeview"
+
+widget_class "*" style "progressbar"
+
+# Treeview header
+widget_class "*.." style "treeview-header"
+widget_class "*.." style "treeview-header"
+widget_class "*.." style "treeview-header"
+widget_class "*.." style "treeview-header"
+
+# Workarounds for Evolution
+widget_class "*.ETable.ECanvas" style "treeview-header"
+widget_class "*.ETree.ECanvas" style "treeview-header"
+widget_class "*GtkCTree*" style "evolution-hack"
+widget_class "*GtkList*" style "evolution-hack"
+widget_class "*GtkCList*" style "evolution-hack"
+widget_class "*.ETree.*" style "evolution-hack"
+widget_class "*EInfoLabel*" style "evolution-hack"
+
+# Panel style
+#class "*Panel*" style "panel"
+widget "*PanelWidget*" style "panel"
+widget "*PanelApplet*" style "panel"
+widget "*fast-user-switch*" style "panel"
+class "PanelApp*" style "panel"
+class "PanelToplevel*" style "panel"
+#widget_class "*Mail*" style "panel"
+widget_class "*notif*" style "panel"
+widget_class "*Notif*" style "panel"
+
+# XFCE panel theming
+widget "*Xfce*Panel*" style "panel"
+class "*Xfce*Panel*" style "panel"
+
+# Radiocheck
+class "GtkCheck*" style "radiocheck"
+
+# The window of the tooltip is called "gtk-tooltip"
+################################
+# FIXME:
+# This will not work if one embeds eg. a button into the tooltip.
+# As far as I can tell right now we will need to rework the theme
+# quite a bit to get this working correctly.
+# (It will involve setting different priorities, etc.)
+################################
+widget "gtk-tooltip*" style "tooltips"
+
+###################################################
+# Special cases and work arounds
+###################################################
+
+# Special case the nautilus-extra-view-widget
+# ToDo: A more generic approach for all applications that have a widget like this.
+widget "*.nautilus-extra-view-widget" style : highest "nautilus-location"
+
+# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
+# Note that the work around assumes that the combobox is _not_ in
+# appears-as-list mode.
+# Similar hack also in the menuitem style.
+# This style does not affect GtkComboBoxEntry, it does have an effect
+# on comboboxes in appears-as-list mode though.
+style "text-is-fg-color-workaround"
+{
+ text[NORMAL] = "#222222"
+ text[PRELIGHT] = "#222222"
+ text[SELECTED] = "#222222"
+ text[ACTIVE] = "#222222"
+ text[INSENSITIVE] = "#d0d0d0"
+}
+widget_class "*.." style "text-is-fg-color-workaround"
+
+style "menuitem-text-is-fg-color-workaround"
+{
+ text[NORMAL] = "#D4D4D4"
+ text[PRELIGHT] = @selected_fg_color
+ text[SELECTED] = @selected_fg_color
+ text[ACTIVE] = @selected_fg_color
+ text[INSENSITIVE] = "#d0d0d0"
+}
+widget "*.gtk-combobox-popup-menu.*" style "menuitem-text-is-fg-color-workaround"
+
+style "fg-is-text-color-workaround"
+{
+ fg[NORMAL] = "#222222"
+ fg[PRELIGHT] = "#222222"
+ fg[ACTIVE] = "#ffffff"
+ fg[SELECTED] = "#ffffff"
+ fg[INSENSITIVE] = "#d0d0d0"
+}
+widget_class "**" style "fg-is-text-color-workaround"
+widget_class "*" style "fg-is-text-color-workaround"
+
+# Work around the evolution "New" button bug by making the toolbar flat.
+# http://bugzilla.gnome.org/show_bug.cgi?id=446953
+# Maybe remove this workaround in unstable releases.
+style "evo-new-button-workaround"
+{
+
+ engine "murrine"
+ {
+ toolbarstyle = 0
+ rgba = FALSE
+ }
+}
+widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "evo-new-button-workaround"
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/panel.rc b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/panel.rc
new file mode 100644
index 0000000..97f608a
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/gtk-2.0/panel.rc
@@ -0,0 +1,140 @@
+#################### PANEL BACKGROUND #########################xx
+
+style "panelbg"
+{
+
+xthickness = 0
+ythickness = 0
+bg_pixmap[NORMAL] = "Panel/panel-bg.png"
+#bg_pixmap[SELECTED] = "Panel/panel-bg.png"
+#bg_pixmap[INSENSITIVE] = "Panel/panel-bg.png"
+#bg_pixmap[PRELIGHT] = "Panel/panel-bg.png"
+#bg_pixmap[ACTIVE] = "Panel/panel-bg.png"
+}
+
+class "*Panel*" style "panelbg"
+widget_class "*notif*" style "panelbg"
+widget_class "*Notif*" style "panelbg"
+#widget_class "*Tray*" style "panelbg"
+#widget_class "*tray*" style "panelbg"
+
+##################### PANEL BUTTONS ###############################
+
+style "panelbuttons"
+{
+
+ fg[NORMAL] = "#f5f5f5" #
+ fg[PRELIGHT] = "#ffffff" # text on buttons (hover)
+ fg[ACTIVE] = "#f5f5f5" # text on unfocused tabs
+
+
+ xthickness = 2
+ ythickness = 1
+
+ GtkWidget::focus_padding = 2
+
+ engine "pixmap" {
+
+ image
+ {
+ function = BOX
+ recolorable = TRUE
+ state = NORMAL
+ file = "Panel/panel-button-inactive.png"
+ border = { 4, 4, 4, 4 }
+ stretch = TRUE
+ }
+
+ image
+ {
+ function = BOX
+ recolorable = TRUE
+ state = PRELIGHT
+ file = "Panel/panel-button-active.png"
+ border = { 2, 2, 2, 2 }
+ stretch = TRUE
+ }
+
+ image
+ {
+ function = BOX
+ recolorable = TRUE
+ shadow = OUT
+ state = PRELIGHT
+ file = "Panel/panel-button-active.png"
+ border = { 4, 4, 4, 4 }
+ stretch = TRUE
+
+ }
+
+ image
+ {
+ function = BOX
+ recolorable = TRUE
+ shadow = IN
+ state = PRELIGHT
+ file = "Panel/panel-button-active.png"
+ border = { 4, 4, 4, 4 }
+ stretch = TRUE
+
+ }
+
+ image
+ {
+ function = BOX
+ recolorable = TRUE
+ state = ACTIVE
+ file = "Panel/panel-button-hover.png"
+ border = { 4, 4, 4, 4 }
+ stretch = TRUE
+ }
+ image
+ {
+ function = BOX
+ recolorable = TRUE
+ state = INSENSITIVE
+ file = "Panel/panel-button-inactive.png"
+ border = { 4, 4, 4, 4 }
+ stretch = TRUE
+ }
+/* image
+ {
+ function = HANDLE
+ recolorable = TRUE
+ overlay_file = "Panel/handle-v.png"
+ overlay_stretch = FALSE
+ orientation = VERTICAL
+ }
+ image
+ {
+ function = HANDLE
+ overlay_file = "Panel/handle-h.png"
+ overlay_stretch = FALSE
+ orientation = HORIZONTAL
+ }
+*/
+ }
+
+}
+
+widget "*PanelWidget*" style "panelbuttons"
+widget "*PanelApplet*" style "panelbuttons"
+#widget_class "*Panel*GtkToggleButton*" style "panelbuttons"
+#widget_class "*Panel*GtkButton" style "panelbuttons"
+widget_class "*PanelButton*." style "panelbuttons"
+widget_class "*Panel*" style "panelbg"
+
+#############################################################
+#FIXES THE STANDARD SHUTDOWN-DIALOG ON GNOME
+#############################################################
+
+style "fix"
+{
+xthickness = 0
+ythickness = 0
+ bg[NORMAL] = "#e8e8e8"
+}
+
+class "*Panel*" style "fix"
+
+#############################################################
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/index.theme b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/index.theme
new file mode 100644
index 0000000..77f5b23
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/index.theme
@@ -0,0 +1,8 @@
+[X-GNOME-Metatheme]
+Name=MurrineCleanGlass
+Type=X-GNOME-Metatheme
+Comment=
+Encoding=UTF-8
+GtkTheme=MurrineCleanGlass
+MetacityTheme=CleanGlass
+IconTheme=Eikon
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/Thumbs.db b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/Thumbs.db
new file mode 100644
index 0000000..750b30b
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/Thumbs.db differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom.png
new file mode 100644
index 0000000..54b86e5
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom_left.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom_left.png
new file mode 100644
index 0000000..0c4d420
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom_left.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom_right.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom_right.png
new file mode 100644
index 0000000..033a30a
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/bottom_right.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-focused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-focused.png
new file mode 100644
index 0000000..f56e7ae
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-pressed.png
new file mode 100644
index 0000000..0b2932d
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-unfocused.png
new file mode 100644
index 0000000..c252b2e
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-close-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-focused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-focused.png
new file mode 100644
index 0000000..a0053c9
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-pressed.png
new file mode 100644
index 0000000..d3e7502
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-unfocused.png
new file mode 100644
index 0000000..83163d4
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-maximize-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-focused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-focused.png
new file mode 100644
index 0000000..80e4180
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-normal.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-normal.png
new file mode 100644
index 0000000..10e8a02
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-normal.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-pressed.png
new file mode 100644
index 0000000..9ceb6d8
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-unfocused.png
new file mode 100644
index 0000000..10e8a02
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-menu-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-focused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-focused.png
new file mode 100644
index 0000000..470248e
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-pressed.png
new file mode 100644
index 0000000..7349da0
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-unfocused.png
new file mode 100644
index 0000000..c79680c
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/button-minimize-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/left.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/left.png
new file mode 100644
index 0000000..5ffd025
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/left.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/metacity-theme-1.xml
new file mode 100644
index 0000000..b6bd8ac
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,221 @@
+
+
+
+ CleanGlass
+ lassekongo83
+ GPL
+ September 26, 2008
+ CleanGlass for Metacity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/metacity-theme-1.xml~ b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/metacity-theme-1.xml~
new file mode 100644
index 0000000..65b8d5b
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/metacity-theme-1.xml~
@@ -0,0 +1,221 @@
+
+
+
+ CleanGlass
+ lassekongo83
+ GPL
+ September 26, 2008
+ CleanGlass for Metacity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/right.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/right.png
new file mode 100644
index 0000000..0a2d5d1
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/right.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top.png
new file mode 100644
index 0000000..c4853c0
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top_left.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top_left.png
new file mode 100644
index 0000000..34ae016
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top_left.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top_right.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top_right.png
new file mode 100644
index 0000000..4b827b1
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/top_right.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top.png
new file mode 100644
index 0000000..c4853c0
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top_left.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top_left.png
new file mode 100644
index 0000000..34ae016
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top_left.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top_right.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top_right.png
new file mode 100644
index 0000000..4b827b1
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineCleanGlass/metacity-1/un_top_right.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/menu-mur.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/menu-mur.png
new file mode 100644
index 0000000..68d2d5d
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/menu-mur.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/menu.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/menu.png
new file mode 100644
index 0000000..85bba97
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/menu.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/metacity-theme-1.xml
new file mode 100644
index 0000000..a06673e
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineRounded/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,963 @@
+
+
+
+ MurrineRounded
+ Andrea Cimitan, a modification of a metacity by BVC
+ GPL
+ 2007
+ A metacity for rounded Murrine themes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedIcon/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedIcon/metacity-1/metacity-theme-1.xml
new file mode 100644
index 0000000..3f7e15c
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedIcon/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,935 @@
+
+
+
+ MurrineRoundedIcon
+ Andrea Cimitan, a modification of a metacity by BVC
+ GPL
+ 2007
+ A metacity for rounded Murrine themes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/menu-mur.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/menu-mur.png
new file mode 100644
index 0000000..68d2d5d
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/menu-mur.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/menu.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/menu.png
new file mode 100644
index 0000000..85bba97
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/menu.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/metacity-theme-1.xml
new file mode 100644
index 0000000..3016dba
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramed/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,965 @@
+
+
+
+ MurrineRoundedLessFramed
+ Andrea Cimitan, a modification of a metacity by BVC
+ GPL
+ 2007
+ A metacity for rounded Murrine themes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/menu-mur.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/menu-mur.png
new file mode 100644
index 0000000..68d2d5d
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/menu-mur.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/menu.png b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/menu.png
new file mode 100644
index 0000000..85bba97
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/menu.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/metacity-theme-1.xml
new file mode 100644
index 0000000..41cb0c4
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/MurrineRoundedLessFramedIcon/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,936 @@
+
+
+
+ MurrineRoundedLessFramedIcon
+ Andrea Cimitan, a modification of a metacity by BVC
+ GPL
+ 2007
+ A metacity for rounded Murrine themes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/Thumbs.db b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/Thumbs.db
new file mode 100755
index 0000000..e24d596
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/Thumbs.db differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-focused.png
new file mode 100644
index 0000000..90607b2
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-pressed.png
new file mode 100644
index 0000000..90607b2
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-unfocused.png
new file mode 100644
index 0000000..7ec53bb
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-close-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-focused.png
new file mode 100644
index 0000000..b76b761
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-pressed.png
new file mode 100644
index 0000000..b76b761
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-unfocused.png
new file mode 100644
index 0000000..cd3514f
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-maximize-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-focused.png
new file mode 100644
index 0000000..0001d63
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-pressed.png
new file mode 100644
index 0000000..0001d63
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-unfocused.png
new file mode 100644
index 0000000..79a68cf
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-menu-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-focused.png
new file mode 100644
index 0000000..4c23682
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-pressed.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-pressed.png
new file mode 100644
index 0000000..4c23682
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-pressed.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-unfocused.png
new file mode 100644
index 0000000..28483e5
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/button-minimize-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-left-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-left-focused.png
new file mode 100644
index 0000000..46e9db5
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-left-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-mid-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-mid-focused.png
new file mode 100644
index 0000000..90b072a
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-mid-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-right-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-right-focused.png
new file mode 100644
index 0000000..d677bdf
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-bottom-right-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-left-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-left-focused.png
new file mode 100644
index 0000000..1c6a6a3
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-left-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-right-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-right-focused.png
new file mode 100644
index 0000000..849c52b
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/frame-right-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/metacity-theme-1.xml b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/metacity-theme-1.xml
new file mode 100755
index 0000000..c8a3a8d
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/metacity-theme-1.xml
@@ -0,0 +1,225 @@
+
+
+
+ StormCloud
+ hbweb500
+ NONE
+ 2006
+ A simple dark theme to accompany StormCloud GTK.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/metacity-theme-1.xml~ b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/metacity-theme-1.xml~
new file mode 100755
index 0000000..2adb832
--- /dev/null
+++ b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/metacity-theme-1.xml~
@@ -0,0 +1,219 @@
+
+
+
+ StormCloud
+ hbweb500
+ NONE
+ 2006
+ A simple dark theme to accompany StormCloud GTK.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-focused.png
new file mode 100644
index 0000000..505354a
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-maximized.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-maximized.png
new file mode 100644
index 0000000..eb3efab
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-maximized.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-focuse.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-focuse.png
new file mode 100644
index 0000000..49ce009
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-focuse.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-focused.png
new file mode 100644
index 0000000..49ce009
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-unfocused.png
new file mode 100644
index 0000000..49ce009
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-shaded-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-unfocused.png
new file mode 100644
index 0000000..49ce009
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-left-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-focused.png
new file mode 100644
index 0000000..e394df3
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-shaded-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-shaded-focused.png
new file mode 100644
index 0000000..e394df3
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-shaded-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-unfocused.png
new file mode 100644
index 0000000..e394df3
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-mid-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-focused.png
new file mode 100644
index 0000000..ebf7733
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-maximized.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-maximized.png
new file mode 100644
index 0000000..90a3453
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-maximized.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-shaded-focused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-shaded-focused.png
new file mode 100644
index 0000000..ebf7733
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-shaded-focused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-shaded-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-shaded-unfocused.png
new file mode 100644
index 0000000..ebf7733
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-shaded-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-unfocused.png b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-unfocused.png
new file mode 100644
index 0000000..ebf7733
Binary files /dev/null and b/releases/12/sabayon-artwork-gnome/metacity/StormCloud/metacity-1/titlebar-right-unfocused.png differ
diff --git a/releases/12/sabayon-artwork-grub/Makefile b/releases/12/sabayon-artwork-grub/Makefile
new file mode 100644
index 0000000..dbca877
--- /dev/null
+++ b/releases/12/sabayon-artwork-grub/Makefile
@@ -0,0 +1,29 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+ ./make_images.sh
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-grub/images/default-splash.png b/releases/12/sabayon-artwork-grub/images/default-splash.png
new file mode 100644
index 0000000..58ed102
Binary files /dev/null and b/releases/12/sabayon-artwork-grub/images/default-splash.png differ
diff --git a/releases/12/sabayon-artwork-grub/make_images.sh b/releases/12/sabayon-artwork-grub/make_images.sh
new file mode 100755
index 0000000..83e6625
--- /dev/null
+++ b/releases/12/sabayon-artwork-grub/make_images.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+SOURCE_SVG="../_devel/grub.svg"
+IMAGE_NAME="default-splash.png"
+THEME_DIR="images"
+
+inkscape -z --export-png="${THEME_DIR}/${IMAGE_NAME}" \
+ --export-area-page \
+ --export-width="1024" \
+ --export-height="768" \
+ "${SOURCE_SVG}" || exit 1
diff --git a/releases/12/sabayon-artwork-isolinux/Makefile b/releases/12/sabayon-artwork-isolinux/Makefile
new file mode 100644
index 0000000..dbca877
--- /dev/null
+++ b/releases/12/sabayon-artwork-isolinux/Makefile
@@ -0,0 +1,29 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+ ./make_images.sh
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-isolinux/images/back.jpg b/releases/12/sabayon-artwork-isolinux/images/back.jpg
new file mode 100644
index 0000000..e02d1c3
Binary files /dev/null and b/releases/12/sabayon-artwork-isolinux/images/back.jpg differ
diff --git a/releases/12/sabayon-artwork-isolinux/make_images.sh b/releases/12/sabayon-artwork-isolinux/make_images.sh
new file mode 100755
index 0000000..542366c
--- /dev/null
+++ b/releases/12/sabayon-artwork-isolinux/make_images.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+SOURCE_SVG="../_devel/isolinux.svg"
+IMAGE_NAME="back.jpg"
+THEME_DIR="images"
+
+convert -resize 640x480 "${SOURCE_SVG}" \
+ "${THEME_DIR}/${IMAGE_NAME}" || exit 1
+
diff --git a/releases/12/sabayon-artwork-kde/Makefile b/releases/12/sabayon-artwork-kde/Makefile
new file mode 100644
index 0000000..a32ac85
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/Makefile
@@ -0,0 +1,30 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+ ./make_kdm.sh
+ ./make_ksplash.sh
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/KdmGreeterTheme.desktop b/releases/12/sabayon-artwork-kde/kdm/sabayon/KdmGreeterTheme.desktop
new file mode 100644
index 0000000..b87adc4
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/kdm/sabayon/KdmGreeterTheme.desktop
@@ -0,0 +1,11 @@
+# Apparently this is not really a .desktop file like the rest, but it's useful
+# to treat it as such
+
+[KdmGreeterTheme]
+Encoding=UTF-8
+Greeter=sabayon.xml
+Name=SabayonKDM
+Description=Sabayon KDM theme
+Author=Ian Whyman
+Copyright=Sabayon Foundation
+Screenshot=screenshot.png
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/logo.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/logo.png
new file mode 100644
index 0000000..3213007
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/logo.png differ
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/main-runner.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/main-runner.png
new file mode 100644
index 0000000..45ff556
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/main-runner.png differ
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/sabayon.xml b/releases/12/sabayon-artwork-kde/kdm/sabayon/sabayon.xml
new file mode 100644
index 0000000..7a9bdfd
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/kdm/sabayon/sabayon.xml
@@ -0,0 +1,139 @@
+
+
+
+
+
+ -
+
+
+
+ -
+
+
+
-
+
+
+
+ -
+
+
+
+
+ -
+
+
+ %c
+
+
+
+ -
+
+
+
-
+
+
+
+
+
+ -
+
+
+
+ -
+
+
+
+
-
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
-
+
+
+
-
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
-
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
-
+
+
+
+
+
+
+ -
+
+
+
+
-
+
+
+ Login failed
+
+
+
+
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/screenshot.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/screenshot.png
new file mode 100644
index 0000000..8b6e747
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/screenshot.png differ
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/sessions.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/sessions.png
new file mode 100644
index 0000000..952ba7a
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/sessions.png differ
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/sessions_inactive.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/sessions_inactive.png
new file mode 100644
index 0000000..d9c11d9
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/sessions_inactive.png differ
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/system.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/system.png
new file mode 100644
index 0000000..6e48036
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/system.png differ
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/system_inactive.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/system_inactive.png
new file mode 100644
index 0000000..28adad5
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/system_inactive.png differ
diff --git a/releases/12/sabayon-artwork-kde/kdm/sabayon/welcome-time-shadowed.png b/releases/12/sabayon-artwork-kde/kdm/sabayon/welcome-time-shadowed.png
new file mode 100644
index 0000000..effd63e
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kdm/sabayon/welcome-time-shadowed.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1024x768/background.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1024x768/background.png
new file mode 100644
index 0000000..6102d6e
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1024x768/background.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1280x1024/background.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1280x1024/background.png
new file mode 100644
index 0000000..7baaadb
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1280x1024/background.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/background.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/background.png
new file mode 100644
index 0000000..3bfd54c
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/background.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/description.txt b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/description.txt
new file mode 100755
index 0000000..7904dbc
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/description.txt
@@ -0,0 +1,42 @@
+SCALE ON
+BACKGROUND_IMAGE 0 0 background.png
+SCALE OFF
+
+# the image is 390x234, make it centered, all icons need the same adjustment too
+IMAGE_REL CC 0 0 CC rectangle.png
+
+# these have their relative positions to the rectangle adjusted by -195,-117
+# (i.e. half of the rectangle size)
+# 3,32
+ANIM_REL 1 CC -192 -50 LT 30 icon1_anim.png 85 1
+WAIT_STATE kded
+
+# 69,32
+ANIM_REL 2 CC -126 -50 LT 30 icon2_anim.png 85 1
+WAIT_STATE kcminit
+
+# 135,32
+ANIM_REL 3 CC -60 -50 LT 29 icon3_anim.png 85 1
+WAIT_STATE ksmserver
+
+# 201,32
+ANIM_REL 4 CC 6 -50 LT 30 icon4_anim.png 85 1
+WAIT_STATE wm
+
+# 263,15
+ANIM_REL 5 CC 68 -88 LT 30 icon5_anim.png 85 1
+WAIT_STATE desktop
+
+WAIT_STATE ready
+
+# show the icons fully right before the splash goes away
+STOP_ANIM 1
+IMAGE_REL CC -192 -50 LT icon1.png
+STOP_ANIM 2
+IMAGE_REL CC -126 -50 LT icon2.png
+STOP_ANIM 3
+IMAGE_REL CC -60 -50 LT icon3.png
+STOP_ANIM 4
+IMAGE_REL CC 6 -50 LT icon4.png
+STOP_ANIM 5
+IMAGE_REL CC 68 -88 LT icon5.png
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon1.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon1.png
new file mode 100755
index 0000000..93daa84
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon1.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon1_anim.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon1_anim.png
new file mode 100755
index 0000000..3b065f5
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon1_anim.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon2.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon2.png
new file mode 100644
index 0000000..fa80e7c
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon2.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon2_anim.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon2_anim.png
new file mode 100755
index 0000000..36f1afc
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon2_anim.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon3.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon3.png
new file mode 100755
index 0000000..48b2ffe
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon3.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon3_anim.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon3_anim.png
new file mode 100755
index 0000000..8b36220
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon3_anim.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon4.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon4.png
new file mode 100755
index 0000000..15699e2
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon4.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon4_anim.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon4_anim.png
new file mode 100755
index 0000000..9309db5
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon4_anim.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon5.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon5.png
new file mode 100644
index 0000000..e3eae7b
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon5.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon5_anim.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon5_anim.png
new file mode 100755
index 0000000..3ab09d4
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon5_anim.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/make_ksplash_anim.sh b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/make_ksplash_anim.sh
new file mode 100755
index 0000000..b98b839
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/make_ksplash_anim.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+FILE="/home/v00d00/projects/sabayon/artwork/5.6/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/icon5.png"
+
+convert out.png -size 1250x540 tile:$FILE
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/rectangle.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/rectangle.png
new file mode 100755
index 0000000..1600db8
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1600x1200/rectangle.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1920x1200/background.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1920x1200/background.png
new file mode 100644
index 0000000..fe2b807
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/1920x1200/background.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/640x400/background.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/640x400/background.png
new file mode 100644
index 0000000..831d20b
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/640x400/background.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/800x600/background.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/800x600/background.png
new file mode 100644
index 0000000..f4ffa39
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/800x600/background.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/Preview.png b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/Preview.png
new file mode 100644
index 0000000..c891789
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/Preview.png differ
diff --git a/releases/12/sabayon-artwork-kde/ksplash/Sabayon/Theme.rc b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/Theme.rc
new file mode 100644
index 0000000..57ba5f7
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/ksplash/Sabayon/Theme.rc
@@ -0,0 +1,9 @@
+[KSplash Theme: Default]
+Name = Sabayon KDE Splash Screen
+Description = Sabayon KDE Splash Screen
+Version = 6
+Author = Ian Whyman , Nuno Pinheiro & Riccardo Iaconelli
+Homepage = http://www.sabayon.org
+
+# Theme behaviour settings.
+Engine = KSplashX
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/alldesktops.svg b/releases/12/sabayon-artwork-kde/kwin/radial-thin/alldesktops.svg
new file mode 100644
index 0000000..2e669b0
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/kwin/radial-thin/alldesktops.svg
@@ -0,0 +1,1533 @@
+
+
+
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/close.svgz b/releases/12/sabayon-artwork-kde/kwin/radial-thin/close.svgz
new file mode 100644
index 0000000..34c59c6
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kwin/radial-thin/close.svgz differ
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/decoration.svgz b/releases/12/sabayon-artwork-kde/kwin/radial-thin/decoration.svgz
new file mode 100644
index 0000000..d421865
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kwin/radial-thin/decoration.svgz differ
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/keepabove.svgz b/releases/12/sabayon-artwork-kde/kwin/radial-thin/keepabove.svgz
new file mode 100644
index 0000000..cf17d1d
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kwin/radial-thin/keepabove.svgz differ
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/maximize.svgz b/releases/12/sabayon-artwork-kde/kwin/radial-thin/maximize.svgz
new file mode 100644
index 0000000..1848b81
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kwin/radial-thin/maximize.svgz differ
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/metadata.desktop b/releases/12/sabayon-artwork-kde/kwin/radial-thin/metadata.desktop
new file mode 100644
index 0000000..d175daf
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/kwin/radial-thin/metadata.desktop
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Name=Radial (thin borders)
+Comment=Aurorae port of aceph's emerald theme
+
+X-KDE-PluginInfo-Author=scnd101
+X-KDE-PluginInfo-Email=scnd101
+X-KDE-PluginInfo-Name=radial
+X-KDE-PluginInfo-Version=0.81
+X-KDE-PluginInfo-Category=
+X-KDE-PluginInfo-Depends=
+X-KDE-PluginInfo-License=GPL_V2
+X-KDE-PluginInfo-EnabledByDefault=true
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/minimize.svg b/releases/12/sabayon-artwork-kde/kwin/radial-thin/minimize.svg
new file mode 100644
index 0000000..03646ab
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/kwin/radial-thin/minimize.svg
@@ -0,0 +1,1461 @@
+
+
+
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/minimize.svgz b/releases/12/sabayon-artwork-kde/kwin/radial-thin/minimize.svgz
new file mode 100644
index 0000000..34c59c6
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kwin/radial-thin/minimize.svgz differ
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/radial-thinrc b/releases/12/sabayon-artwork-kde/kwin/radial-thin/radial-thinrc
new file mode 100644
index 0000000..2576c7e
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/kwin/radial-thin/radial-thinrc
@@ -0,0 +1,27 @@
+[General]
+ActiveTextColor=255,255,255,255
+InactiveTextColor=217,215,214,255
+TitleAlignment=Left
+TitleVerticalAlignment=Center
+Animation=200
+
+[Layout]
+BorderLeft=7
+BorderRight=7
+BorderBottom=8
+TitleEdgeTop=4
+TitleEdgeBottom=4
+TitleEdgeLeft=10
+TitleEdgeRight=6
+TitleBorderLeft=6
+TitleBorderRight=10
+TitleHeight=20
+ButtonWidth=20
+ButtonHeight=20
+ButtonSpacing=0
+ButtonMarginTop=0
+ExplicitButtonSpacer=10
+PaddingTop=11
+PaddingBottom=12
+PaddingRight=11
+PaddingLeft=11
diff --git a/releases/12/sabayon-artwork-kde/kwin/radial-thin/restore.svgz b/releases/12/sabayon-artwork-kde/kwin/radial-thin/restore.svgz
new file mode 100644
index 0000000..049a489
Binary files /dev/null and b/releases/12/sabayon-artwork-kde/kwin/radial-thin/restore.svgz differ
diff --git a/releases/12/sabayon-artwork-kde/make_kdm.sh b/releases/12/sabayon-artwork-kde/make_kdm.sh
new file mode 100755
index 0000000..d4779b9
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/make_kdm.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+SOURCE_SVG="../_devel/wallpaper_final_kgdm.svg"
+
+PREVIEW_NAME="screenshot.png"
+THEME_DIR="kdm/sabayon"
+
+convert -resize 400x250 "${SOURCE_SVG}" "${THEME_DIR}/${PREVIEW_NAME}"
+
diff --git a/releases/12/sabayon-artwork-kde/make_ksplash.sh b/releases/12/sabayon-artwork-kde/make_ksplash.sh
new file mode 100755
index 0000000..a66432e
--- /dev/null
+++ b/releases/12/sabayon-artwork-kde/make_ksplash.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+SOURCE_SVG="../_devel/wallpaper_final_kgdm.svg"
+
+RESOLUTIONS="
+640x400
+800x600
+1024x768
+1280x1024
+1600x1200
+1920x1200
+"
+IMAGE_NAME="background.png"
+PREVIEW_NAME="Preview.png"
+THEME_DIR="ksplash/Sabayon"
+
+for res in ${RESOLUTIONS}; do
+ echo "Doing -> ${res}"
+ convert -resize "${res}" "${SOURCE_SVG}" \
+ "${THEME_DIR}/${res}/${IMAGE_NAME}" || exit 1
+done
+convert -resize 400x250 "${SOURCE_SVG}" "${THEME_DIR}/${PREVIEW_NAME}"
+
diff --git a/releases/12/sabayon-artwork-loo/Makefile b/releases/12/sabayon-artwork-loo/Makefile
new file mode 100644
index 0000000..dbca877
--- /dev/null
+++ b/releases/12/sabayon-artwork-loo/Makefile
@@ -0,0 +1,29 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+ ./make_images.sh
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-loo/images/about.png b/releases/12/sabayon-artwork-loo/images/about.png
new file mode 100644
index 0000000..8244743
Binary files /dev/null and b/releases/12/sabayon-artwork-loo/images/about.png differ
diff --git a/releases/12/sabayon-artwork-loo/images/intro.png b/releases/12/sabayon-artwork-loo/images/intro.png
new file mode 100644
index 0000000..2d65bf3
Binary files /dev/null and b/releases/12/sabayon-artwork-loo/images/intro.png differ
diff --git a/releases/12/sabayon-artwork-loo/images/sofficerc b/releases/12/sabayon-artwork-loo/images/sofficerc
new file mode 100644
index 0000000..f7e4882
--- /dev/null
+++ b/releases/12/sabayon-artwork-loo/images/sofficerc
@@ -0,0 +1,9 @@
+[Bootstrap]
+HideEula=1
+Logo=1
+NativeProgress=true
+ProgressBarColor=255,255,255
+ProgressFrameColor=255,255,255
+ProgressPosition=10,385
+ProgressSize=650,5
+URE_BOOTSTRAP=${ORIGIN}/fundamentalrc
diff --git a/releases/12/sabayon-artwork-loo/make_images.sh b/releases/12/sabayon-artwork-loo/make_images.sh
new file mode 100755
index 0000000..421eecd
--- /dev/null
+++ b/releases/12/sabayon-artwork-loo/make_images.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+SOURCE_ABOUT_SVG="../_devel/libreoffice_about.svg"
+SOURCE_INTRO_SVG="../_devel/libreoffice_intro.svg"
+
+INTRO_IMAGE_NAME="intro.png"
+ABOUT_IMAGE_NAME="about.png"
+THEME_DIR="images"
+
+convert -resize 387x95 "${SOURCE_ABOUT_SVG}" \
+ "${THEME_DIR}/${ABOUT_IMAGE_NAME}" || exit 1
+convert -resize 640x400 "${SOURCE_INTRO_SVG}" \
+ "${THEME_DIR}/${INTRO_IMAGE_NAME}" || exit 1
+
diff --git a/releases/12/sabayon-artwork-lxde/Makefile b/releases/12/sabayon-artwork-lxde/Makefile
new file mode 100644
index 0000000..d75ae1c
--- /dev/null
+++ b/releases/12/sabayon-artwork-lxde/Makefile
@@ -0,0 +1,28 @@
+
+include ../make.include
+
+DIR_NAME := $(shell basename $(CURDIR))
+TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz
+PKG_CATEGORY := x11-themes
+PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME)
+
+all: scripts cook
+
+scripts:
+
+cook:
+ tar -cJf ../$(TARBALL_NAME) \
+ ../$(DIR_NAME) --exclude Makefile \
+ --exclude .gitignore \
+ --exclude *.tar.xz \
+ --exclude *.sh
+
+clean:
+ rm -f ../$(TARBALL_NAME)
+
+push:
+ ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
+ mkdir -p $(PKG_PUSH_DIR)
+ scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \
+ $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/
+
diff --git a/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/greeter.ui b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/greeter.ui
new file mode 100644
index 0000000..0e127ba
--- /dev/null
+++ b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/greeter.ui
@@ -0,0 +1,215 @@
+
+
+
+
+
+
diff --git a/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc
new file mode 100644
index 0000000..7881304
--- /dev/null
+++ b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc
@@ -0,0 +1,53 @@
+style "back"
+{
+ engine "pixmap"
+ {
+ image
+ {
+ function = FLAT_BOX
+ shadow=NONE
+ state = NORMAL
+ file="kgdm.jpg"
+ stretch=TRUE
+ detail = "base"
+ }
+ }
+}
+
+style "time"
+{
+ fg[NORMAL]="#ffffff"
+ font_name="Sans 10"
+}
+
+style "prompt"
+{
+ fg[NORMAL]="#ffffff"
+ font_name="Sans Bold 10"
+}
+
+# Normally this won't paint an invisible event box, but we did some hacks in greeter.c.
+style "bottom"
+{
+ font_name="Sans 10"
+ fg[NORMAL] = "#ffffff"
+
+ engine "pixmap"
+ {
+ image
+ {
+ function = FLAT_BOX
+ file="shade.png"
+ stretch=TRUE
+ detail="eventbox"
+ }
+ }
+}
+
+widget "lxdm" style "back"
+widget "lxdm.*.time" style "time"
+widget "lxdm.*.prompt" style "prompt"
+widget "lxdm.*.bottom_pane" style "bottom"
+widget_class "GtkWindow.*.GtkEventBox.*." style "bottom"
+widget_class "GtkWindow.*.GtkAlignment.*." style "prompt"
+
diff --git a/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/index.theme b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/index.theme
new file mode 100644
index 0000000..ae96914
--- /dev/null
+++ b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/index.theme
@@ -0,0 +1,5 @@
+[LXDM Theme]
+Name=Sabayon
+Comment=Sabayon Linux LXDM Theme
+Author=Ian Whyman ;
+License=CC-BY-SA 3.0
diff --git a/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/lang.png b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/lang.png
new file mode 100644
index 0000000..f2abef0
Binary files /dev/null and b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/lang.png differ
diff --git a/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/session.png b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/session.png
new file mode 100644
index 0000000..0e85af8
Binary files /dev/null and b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/session.png differ
diff --git a/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/shade.png b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/shade.png
new file mode 100644
index 0000000..10f0129
Binary files /dev/null and b/releases/12/sabayon-artwork-lxde/lxdm/Sabayon/shade.png differ