🐛 fix(amfora): Add required config

Amfora seems to require something in the default config structure to
run. I don't care to figure out exactly what is required at the moment.
This commit is contained in:
punkfairie 2024-11-03 09:39:37 -08:00
parent d291c80886
commit 9d97f5262f
Signed by: punkfairie
GPG key ID: 01823C057725C266

View file

@ -29,7 +29,7 @@
bullets = true bullets = true
show_link = false show_link = false
max_width = 80 max_width = 80
downloads = "" downloads = '''
page_max_size = 2097152 # 2 MiB page_max_size = 2097152 # 2 MiB
page_max_time = 10 page_max_time = 10
scrollbar = "auto" scrollbar = "auto"
@ -39,25 +39,35 @@
# TODO: Change based on current theme. # TODO: Change based on current theme.
highlight_style = "rose-pine" highlight_style = "rose-pine"
[url-handlers]
# Defaults {{{ # Defaults {{{
[auth]
[auth.certs]
[auth.keys]
[keybindings]
[url-handlers]
other = 'default' other = 'default'
# }}}
[url-prompts]
[cache] [cache]
# Defaults {{{
max_size = 0 max_size = 0
max_pages = 30 max_pages = 30
timeout = 1800 timeout = 1800
# }}}
[proxies]
[subscriptions] [subscriptions]
# Defaults {{{
popup = true popup = true
update_interval = 1800 update_interval = 1800
workers = 3 workers = 3
entries_per_page = 20 entries_per_page = 20
header = true header = true
[theme]
# }}} # }}}
''; '';
} }