Branding
Customize branding elements that appear in the UI and HTML metadata.
Configuration
Options
| Option | Default | Description |
|---|---|---|
name | “FileBrowser Quantum” | Display name in header and PWA manifest |
description | "" | HTML meta description for SEO/link previews |
favicon | Built-in | Path to custom favicon image |
externalLinks | [] | Custom links in sidebar |
Name
Display name appears in:
- Application header
- Browser tab title
- PWA manifest
- Mobile home screen
Description
HTML meta description used for:
- Search engine results
- Social media link previews
- Browser metadata
Favicon
Custom favicon supports multiple image formats. Non-PNG raster formats are automatically converted to PNG for PWA icon generation.
Supported Formats
Raster formats (can be used directly as favicon):
- PNG (
.png) - JPEG (
.jpg,.jpeg) - WebP (
.webp) - GIF (
.gif) - TIFF (
.tiff) - BMP (
.bmp) - PBM (
.pbm) - PGM (
.pgm) - PPM (
.ppm) - PAM (
.pam)
Vector format:
- SVG (
.svg) - should include a companion PNG file in the same directory for maximum compatibility.
All non-PNG raster formats are automatically converted to PNG internally for PWA icon generation (192x192, 256x256, 512x512) and platform-specific icons. The original format is used for the favicon display in the browser.
Image Favicon
Simple favicon:
Recommended size: 256x256 pixels
Other Formats
You can use any supported format directly:
The system will automatically convert the file to PNG for generating PWA icons (192x192, 256x256, 512x512) and platform-specific icons.
SVG Favicon with PNG Companion
For SVG favicons, you should provide a PNG file with the same name in the same directory. The system will use the SVG for modern browsers and generate compatibility icons from the PNG companion file.
Requirements:
- SVG file:
/path/to/favicon.svg - PNG companion:
/path/to/favicon.png(must exist in the same directory with the same base name) - The PNG file is used to generate PWA icons and other compatibility formats
Example: If you configure:
The system will:
- Use
myicon.svgfor the favicon in modern browsers - Look for
myicon.pngin the same directory (/home/filebrowser/myicon.png) - Convert the PNG to generate PWA icons (192x192, 256x256, 512x512) and platform-specific icons
Important: SVG favicons should include a companion PNG file with the same base name in the same directory. If the PNG companion is not found, the system will fall back to the default favicon.
External Links
Add custom sidebar links:
Fields:
text- Link text displayed in sidebar (required)url- Destination URL (required)title- Tooltip shown on hover
Complete Example
| |