32 lines
742 B
TOML
32 lines
742 B
TOML
[browsers]
|
|
|
|
[browsers.chromium]
|
|
name = "Chromium"
|
|
exec = "chromium"
|
|
|
|
[browsers.firefox]
|
|
name = "Mozilla Firefox"
|
|
exec = "firefox"
|
|
# working_dir = "/some/dir"
|
|
|
|
|
|
[general]
|
|
|
|
default_browser = "chromium"
|
|
|
|
[urlpatterns]
|
|
|
|
[urlpatterns.google]
|
|
site_name = "google"
|
|
site_url = ["google.com", "google.de"] # Also simple string possible
|
|
# www = true # Also match www.url
|
|
# protocol = ["http", "https"] # Protocols to match
|
|
browser = "chromium"
|
|
|
|
[urlpatterns.netflix]
|
|
# Execute Netflix with Firefox
|
|
site_name = "Netflix"
|
|
# Instead of site_url, a site_regex can be used for full flexibility
|
|
site_regex = '^(?:http|https)://(?:www\.|)netflix\.(?:com|de)'
|
|
browser = "firefox"
|