Browse Source

Merge 796c1765c3 into 3eb9d58037

pull/13/merge
Jerome Hardaway GitHub 7 months ago
parent
commit
c8ed29b7a0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      src/main.c

+ 2
- 3
src/main.c View File

@@ -65,7 +65,7 @@ int main(int argc, char *argv[])
{ "width", 1, NULL, 'w' },
{ "termwidth", 0, NULL, 't' },
{ "filter", 1, NULL, 'F' },
{ "gay", 0, NULL, 130 },
{ "rainbow", 0, NULL, 130 },
{ "metal", 0, NULL, 131 },
{ "rainbow", 0, NULL, 132 },
{ "export", 1, NULL, 'E' },
@@ -105,7 +105,7 @@ int main(int argc, char *argv[])
if(filter_add(cx, caca_optarg) < 0)
return -1;
break;
case 130: /* --gay (alias to rainbow)*/
case 130: /* --rainbow (alias to rainbow)*/
filter_add(cx, "rainbow");
break;
case 131: /* --metal */
@@ -248,4 +248,3 @@ static void usage(void)
{
printf("%s%s", HELP, USAGE);
}


Loading…
Cancel
Save