LinuxCommandLibrary

dillo

TLDR

Launch Dillo browser

$ dillo
copy
Open a URL
$ dillo [https://example.com]
copy
Open local HTML file
$ dillo [file.html]
copy
Open in fullscreen mode
$ dillo -f [url]
copy
Use specific geometry
$ dillo -g [800x600] [url]
copy

SYNOPSIS

dillo [options] [URL|file]

DESCRIPTION

Dillo is a fast, small, and resource-efficient web browser written in C using the FLTK toolkit. It prioritizes speed and privacy over feature completeness, making it suitable for older hardware or minimalist setups.
The browser supports HTML 4.01 and CSS 2.1 with limitations, focusing on core browsing functionality. It doesn't include JavaScript support, which improves performance and reduces security surface but limits compatibility with modern websites.
Dillo features tabbed browsing, bookmarks, and form handling. Its minimal resource usage makes it valuable for embedded systems, older computers, or users who prefer lightweight applications.

PARAMETERS

URL

Web address to open.
FILE
Local HTML file to open.
-f, --fullscreen
Start in fullscreen mode.
-g WxH
Window geometry (width x height).
-v, --version
Display version information.
-h, --help
Display help information.

CAVEATS

No JavaScript support limits modern website compatibility. CSS support is incomplete. No plugin system. HTTPS support may require additional libraries. Limited media playback capabilities.

HISTORY

Dillo was started by Jorge Arellano Cid in 1999. Development focused on creating a minimalist browser that could run on low-resource systems. After periods of dormancy, the project continues with community maintenance.

SEE ALSO

firefox(1), links(1), lynx(1), surf(1)

Copied to clipboard