diff options
Diffstat (limited to 'surf.c')
-rw-r--r-- | surf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/surf.c b/surf.c index 42bc393..dfcd787 100644 --- a/surf.c +++ b/surf.c @@ -1277,7 +1277,8 @@ updatewinid(Client *c) { static void usage(void) { - die("usage: %s [-biknpsvx] [-c cookiefile] [-e xid] [-r scriptfile]" + die("usage: %s [-bBfFgGiIkKnNpPsSvx]" + " [-c cookiefile] [-e xid] [-r scriptfile]" " [-t stylefile] [-u useragent] [uri]\n", basename(argv0)); } @@ -1326,6 +1327,9 @@ main(int argc, char *argv[]) { case 'f': runinfullscreen = 1; break; + case 'F': + runinfullscreen = 0; + break; case 'g': allowgeolocation = 0; break; |