--- xfishtank.old/xfish.c +++ xfishtank/xfish.c @@ -120,8 +120,8 @@ int Pheight; /* height of background picture */ int Pcnt; /* number of colors in background picture */ unsigned char *Pdata; /* data from background picture */ -double rate = 0.2, /* update interval in seconds */ - smooth = 0.2; /* smoothness increment multiplier */ +double rate = 0.1, /* update interval in seconds */ + smooth = 0.1; /* smoothness increment multiplier */ bubble *binfo; /* bubble info structures, allocated * dynamically */ fish *finfo; /* fish info structures, allocated dynamically */ @@ -225,8 +225,8 @@ fprintf(stderr, "\t\t[-c color] background color\n"); fprintf(stderr, "\t\t[-b limit] number of bubbles (default 32)\n"); fprintf(stderr, "\t\t[-f limit] number of fish (default 10)\n"); - fprintf(stderr, "\t\t[-i mult] move interval (default 0.2)\n"); - fprintf(stderr, "\t\t[-r rate] move frequency (default 0.2)\n"); + fprintf(stderr, "\t\t[-i mult] move interval (default 0.1)\n"); + fprintf(stderr, "\t\t[-r rate] move frequency (default 0.1)\n"); fprintf(stderr, "\t\t[-m num] median cut to this many colors\n"); fprintf(stderr, "\t\t[-C num] use only this many color cells\n"); fprintf(stderr, "\t\t[-d] clip fish, swim on root window\n");