1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 08:34:59 +00:00
serenity/Base/usr/share/man/man1/Applications/Browser.md
Andreas Kling 15211cd753 Userland: Show "Ladybird" instead of "Browser" in titles, menus, etc
While the binary is still called "Browser" for now, let's make it clear
that we're converging on a single name for this application.
2023-05-09 06:12:09 +02:00

33 lines
778 B
Markdown

## Name
![Icon](/res/icons/16x16/app-browser.png) Browser - Serenity WWW Browser
[Open](file:///bin/Browser)
## Synopsis
```**sh
$ Browser [options] [urls]
```
## Description
Ladybird (`Browser`) is an application used to view the World Wide Web. It is built on top of Serenity's own `LibWeb` and `LibJS` engines, allowing it to render HTML, CSS, and JavaScript.
## Options
* `--help`: Display help message and exit
* `--version`: Display version number and exit
## Arguments
* `urls`: A list of urls to open, one per tab. If none are specified, then the homepage will be opened instead.
## Examples
```**sh
$ Browser
$ Browser --help
$ Browser https://serenityos.org/
$ Browser https://serenityos.org/ /res/html/misc/welcome.html github.com/serenityos/serenity
```