From 39b643429160f896be4b767f891067195bbe2b67 Mon Sep 17 00:00:00 2001 From: KockaAdmiralac <1405223@gmail.com> Date: Tue, 1 May 2018 07:33:15 +0200 Subject: [PATCH] Fix for XFCE wallpaper --- binding-mri/wallpaper-binding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding-mri/wallpaper-binding.cpp b/binding-mri/wallpaper-binding.cpp index d644a4d..43679c9 100644 --- a/binding-mri/wallpaper-binding.cpp +++ b/binding-mri/wallpaper-binding.cpp @@ -200,7 +200,7 @@ end: GType colorArrType = g_type_from_name("GPtrArray_GValue_"); if (!colorArrType) { std::stringstream colorCommand; - colorCommand << "xfconf-query -c xfce4-desktop -n -p " << optionImage + colorCommand << "xfconf-query -c xfce4-desktop -n -p " << optionColor << " -t uint -t uint -t uint -t uint -s " << ub << " -s " << ug << " -s " << ub << " -s " << alpha; int colorCommandRes = system(colorCommand.str().c_str());