Change css option -css to --css

This commit is contained in:
jun7 2018-06-07 14:46:26 +09:00
parent f07a88a42c
commit 173159a761
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ and make link from the dir to the wyebadblock as above.
## Element Hiding
Per domain CSS hider rule is not supported
wyebab -css > user.css
wyebab --css > user.css
And add the user.css to your browser as user css.
For wyeb, just copy the user.css to the conf dir.

2
ab.c
View File

@ -211,7 +211,7 @@ int main(int argc, char **argv)
init();
wyebsvr(argc, argv, datafunc);
}
else if (!strcmp(argv[1], "-css"))
else if (!strcmp(argv[1], "-css") || !strcmp(argv[1], "--css"))
{
init();
g_thread_join(initt);