diff --git a/desktop/xfce/addon/gtk-style-xfce/actions.py b/desktop/xfce/addon/gtk-style-xfce/actions.py
new file mode 100644
index 0000000000..1b5b018f28
--- /dev/null
+++ b/desktop/xfce/addon/gtk-style-xfce/actions.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+def setup():
+ shelltools.system('xdt-autogen')
+ autotools.configure('--disable-static')
+
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
+
+ pisitools.dodoc("NEWS", "README", "ChangeLog", "AUTHORS")
diff --git a/desktop/xfce/addon/gtk-style-xfce/pspec.xml b/desktop/xfce/addon/gtk-style-xfce/pspec.xml
new file mode 100644
index 0000000000..825753af09
--- /dev/null
+++ b/desktop/xfce/addon/gtk-style-xfce/pspec.xml
@@ -0,0 +1,50 @@
+
+
+
+
+ gtk-style-xfce
+ https://www.xfce.org/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ GPLv2
+ library
+ desktop.xfce.lookandfeel
+ GTK+ Xfce theme engine
+ Gtk2-engines-xfce is a GTK+ engine for Xfce desktop environment.
+ http://archive.xfce.org/xfce/4.12/src/gtk-xfce-engine-2.10.0.tar.bz2
+
+ xfce4-dev-tools
+ gtk2-devel
+
+
+
+
+ gtk-style-xfce
+
+ atk
+ gtk2
+ gtk3
+ cairo
+ pango
+ gdk-pixbuf
+ fontconfig
+
+
+ /usr/lib
+ /usr/share/themes
+ /usr/share/doc
+
+
+
+
+
+ 2020-11-21
+ 2.10.0
+ Rebuild.For Beta System
+ Ali Cengiz Kurt
+ alicengizkurt@gmail.com
+
+
+
diff --git a/desktop/xfce/addon/gtk-style-xfce/translations.xml b/desktop/xfce/addon/gtk-style-xfce/translations.xml
new file mode 100644
index 0000000000..5ae66269de
--- /dev/null
+++ b/desktop/xfce/addon/gtk-style-xfce/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ gtk-style-xfce
+ GTK+ Xfce tema motoru
+ Gtk2-engines-xfce, Xfce masaüstü yöneticisi için hazırlanmış GTK+ tema motorudur.
+
+
diff --git a/desktop/xfce/addon/icon-theme-xfce4/actions.py b/desktop/xfce/addon/icon-theme-xfce4/actions.py
new file mode 100644
index 0000000000..4c40a7f19b
--- /dev/null
+++ b/desktop/xfce/addon/icon-theme-xfce4/actions.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+WorkDir = 'xfce4-icon-theme-%s' % get.srcVERSION()
+
+def setup():
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
+
+ pisitools.dodoc("Rodent/README", "NEWS", "ChangeLog", "AUTHORS")
diff --git a/desktop/xfce/addon/icon-theme-xfce4/pspec.xml b/desktop/xfce/addon/icon-theme-xfce4/pspec.xml
new file mode 100644
index 0000000000..88c1584969
--- /dev/null
+++ b/desktop/xfce/addon/icon-theme-xfce4/pspec.xml
@@ -0,0 +1,45 @@
+
+
+
+
+ icon-theme-xfce4
+ https://www.xfce.org/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ GPLv2
+ data
+ desktop.xfce.lookandfeel
+ Xfce icon theme
+ Icon theme Rodent for the Xfce Desktop Environment.
+ http://archive.xfce.org/src/art/xfce4-icon-theme/4.4/xfce4-icon-theme-4.4.3.tar.bz2
+
+ intltool
+ icon-theme-hicolor
+
+
+
+
+ icon-theme-xfce4
+
+ icon-theme-hicolor
+
+
+ /usr/lib
+ /usr/lib/pkgconfig
+ /usr/share
+ /usr/share/doc
+
+
+
+
+
+ 2020-11-23
+ 4.4.3
+ Rebuild.For Beta System
+ Ali Cengiz Kurt
+ alicengizkurt@gmail.com
+
+
+
diff --git a/desktop/xfce/addon/icon-theme-xfce4/translations.xml b/desktop/xfce/addon/icon-theme-xfce4/translations.xml
new file mode 100644
index 0000000000..dc15f50a56
--- /dev/null
+++ b/desktop/xfce/addon/icon-theme-xfce4/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ icon-theme-xfce4
+ Xfce simge teması
+ Bu paket, Xfce masaüstü ortamı için Rodent simge temasını içerir.
+
+
diff --git a/desktop/xfce/addon/xfwm4-themes/actions.py b/desktop/xfce/addon/xfwm4-themes/actions.py
new file mode 100644
index 0000000000..7b904a5ca0
--- /dev/null
+++ b/desktop/xfce/addon/xfwm4-themes/actions.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+def setup():
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
+
+ pisitools.dodoc("TODO", "README", "NEWS", "ChangeLog", "AUTHORS")
diff --git a/desktop/xfce/addon/xfwm4-themes/pspec.xml b/desktop/xfce/addon/xfwm4-themes/pspec.xml
new file mode 100644
index 0000000000..9ee438e036
--- /dev/null
+++ b/desktop/xfce/addon/xfwm4-themes/pspec.xml
@@ -0,0 +1,39 @@
+
+
+
+
+ xfwm4-themes
+ https://www.xfce.org/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ GPLv2
+ data
+ desktop.xfce.lookandfeel
+ Xfce window manager themes
+ Xfce4-themes is a set of additional themes for the Xfwm window manager.
+ http://archive.xfce.org/src/art/xfwm4-themes/4.10/xfwm4-themes-4.10.0.tar.bz2
+
+
+
+ xfwm4-themes
+
+ xfwm4
+
+
+ /usr/share
+ /usr/share/doc
+
+
+
+
+
+ 2020-11-21
+ 4.10.0
+ Rebuild.For Beta System
+ Ali Cengiz Kurt
+ alicengizkurt@gmail.com
+
+
+
diff --git a/desktop/xfce/addon/xfwm4-themes/translations.xml b/desktop/xfce/addon/xfwm4-themes/translations.xml
new file mode 100644
index 0000000000..83936e2a3d
--- /dev/null
+++ b/desktop/xfce/addon/xfwm4-themes/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ xfwm4-themes
+ Xfwm pencere yöneticisi temaları
+ Bu paket, Xfce masaüstü yönetici pencereleri için ek temalar içerir.
+
+