This commit is contained in:
2025-07-02 00:06:47 -07:00
commit f1b2f81de4
99 changed files with 5755 additions and 0 deletions

29
qutebrowser/config.py Normal file
View File

@ -0,0 +1,29 @@
config.load_autoconfig(False)
c.auto_save.session=True
# font
c.fonts.default_family="CaskaydiaCove Nerd Font Mono"
c.fonts.default_size="12pt"
# tabs
c.tabs.position="right"
c.tabs.width="8%"
c.tabs.show="always"
c.tabs.show_switching_delay=4000
c.url.default_page="about:blank"
c.url.start_pages="about:blank"
# colors
c.colors.webpage.darkmode.enabled=True
# content
c.content.autoplay=False
config.set('content.user_stylesheets', ['./font.css'])
c.downloads.remove_finished=5000
# binds
config.unbind('q')
config.bind('td', 'config-cycle colors.webpage.darkmode.enabled')
config.bind('tt', 'config-cycle tabs.position right top')
config.bind('h', 'config-cycle tabs.show always never')

3
qutebrowser/font.css Normal file
View File

@ -0,0 +1,3 @@
body, button, input, select, textarea, p, h1, h2, h3, h4, h5, h6, ul, ol, li, blockquote, pre, code {
font-family: "CaskaydiaCove Nerd Font Mono", sans-serif !important;
}