3270427
diff -Naur xfdesktop-4.0.5.orig/settings/backdrop_settings.c xfdesktop-4.0.5/settings/backdrop_settings.c
3270427
--- xfdesktop-4.0.5.orig/settings/backdrop_settings.c	2003-09-19 23:10:59.000000000 +0200
3270427
+++ xfdesktop-4.0.5/settings/backdrop_settings.c	2004-04-20 21:00:10.000000000 +0200
3270427
@@ -72,7 +72,8 @@
3270427
 #define gdk_pixbuf_new_from_inline gdk_pixbuf_new_from_stream
3270427
 #endif
3270427
 
3270427
-#define DEFAULT_BACKDROP (DATADIR "/xfce4/backdrops/xfce-stripes.png")
3270427
+/* Use Fedora (tm) default background image */
2f3de84
+#define DEFAULT_BACKDROP (DATADIR "/backgrounds/images/default.jpg")
3270427
 
3270427
 /*
3270427
  * XXX - No help button for now. Wait for the others to ACK on this.
3270427
@@ -216,12 +217,10 @@
3270427
     }
3270427
     else
3270427
     {
3270427
-        /* 
3270427
-           Just a color by default #336699 - That number looks cool :)
3270427
-         */
3270427
-        backdrop_color.red   = (guint16) 0x3300;
3270427
-        backdrop_color.green = (guint16) 0x6600;
3270427
-        backdrop_color.blue  = (guint16) 0x9900;
3270427
+        /* Use Fedora (tm) default background color */
3270427
+        backdrop_color.red   = (guint16) 0x2600;
3270427
+        backdrop_color.green = (guint16) 0x3200;
3270427
+        backdrop_color.blue  = (guint16) 0x4c00;
3270427
         backdrop_color.alpha = (guint16) 0;
3270427
         mcs_manager_set_color(mcs_plugin->manager, "color", BACKDROP_CHANNEL, 
3270427
                               &backdrop_color);