aab10f5
diff -Nur xfdesktop-4.2.1.orig/common/xfdesktop-common.h xfdesktop-4.2.1/common/xfdesktop-common.h
aab10f5
--- xfdesktop-4.2.1.orig/common/xfdesktop-common.h	2005-01-09 14:18:36.000000000 -0700
aab10f5
+++ xfdesktop-4.2.1/common/xfdesktop-common.h	2005-03-23 13:31:20.448625169 -0700
aab10f5
@@ -28,7 +28,8 @@
aab10f5
 #include <glib.h>
aab10f5
 
aab10f5
 #define BACKDROP_CHANNEL         "BACKDROP"
aab10f5
-#define DEFAULT_BACKDROP         DATADIR "/xfce4/backdrops/xfce-smoke.png"
aab10f5
+/* Use Fedora (tm) default background image */
aab10f5
+#define DEFAULT_BACKDROP         DATADIR "/backgrounds/images/default.png"
aab10f5
 #define LIST_TEXT                "# xfce backdrop list"
aab10f5
 #define XFDESKTOP_SELECTION_FMT  "XFDESKTOP_SELECTION_%d"
aab10f5
 #define XFDESKTOP_IMAGE_FILE_FMT "XFDESKTOP_IMAGE_FILE_%d"
aab10f5
diff -Nur xfdesktop-4.2.1.orig/settings/backdrop_settings.c xfdesktop-4.2.1/settings/backdrop_settings.c
aab10f5
--- xfdesktop-4.2.1.orig/settings/backdrop_settings.c	2005-01-10 03:05:16.000000000 -0700
aab10f5
+++ xfdesktop-4.2.1/settings/backdrop_settings.c	2005-03-23 13:33:09.725725691 -0700
aab10f5
@@ -242,10 +242,10 @@
aab10f5
 				bp->color1.blue = setting->data.v_color.blue;
aab10f5
 				bp->color1.alpha = setting->data.v_color.alpha;
aab10f5
 			} else {
aab10f5
-				/* Just a color by default #1f3f6f - That number looks cool :) */
aab10f5
-				bp->color1.red = (guint16)0x1f00;
aab10f5
-				bp->color1.green = (guint16)0x3f00;
aab10f5
-				bp->color1.blue = (guint16)0x6f00;
aab10f5
+                                /* Use Fedora (tm) default background color */
aab10f5
+                               bp->color1.red = (guint16) 0x2600;
aab10f5
+                               bp->color1.green = (guint16) 0x3200;
aab10f5
+                               bp->color1.blue  = (guint16) 0x4c00;
aab10f5
 				bp->color1.alpha = (guint16)0xffff;
aab10f5
 				mcs_manager_set_color(mcs_plugin->manager, setting_name,
aab10f5
 						BACKDROP_CHANNEL, &bp->color1);