LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

dillo

lightweight minimalist web browser

TLDR

Launch Dillo browser
$ dillo
copy
Open a URL
$ dillo [https://example.com]
copy
Open local HTML file
$ dillo [file.html]
copy
Open in fullwindow mode (hide address bar, menu, and buttons)
$ dillo -f [url]
copy
Open with specific window geometry
$ dillo -g [800x600] [url]
copy
Open in local mode (don't load remote images or follow redirections)
$ dillo -l [path/to/file.html]
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, --fullwindow
Start in fullwindow mode, hiding the address bar, navigation buttons, menu, and status bar.
-g WxH[+X+Y]
Window geometry (width x height and optional position).
-l, --local
Don't load remote images or stylesheets, or follow redirections.
-v, --version
Display version information.
-h, --help
Display help information.

CONFIGURATION

~/.dillo/dillorc

Main configuration file for browser preferences, fonts, and behavior.
~/.dillo/keysrc
Keyboard shortcut mappings.
~/.dillo/domainrc
Domain-specific rules and settings.

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
Kai