{
    our @newlines;
    foreach( @lines ) {
	next if /^foreground/ || /^background/;
	if ( m#^splashimage=(.*)/# ) {
	    push @newlines, "splashimage=$1/smeserver.xpm.gz";
	    push @newlines, "foreground 000000";
	    push @newlines, "background 4E95D3";
	} else {
	    push @newlines, $_;
	}
    }
    @lines = @newlines;
    $OUT = "";
}
