qutebrowser.

This commit is contained in:
Bartek Stalewski 2022-12-03 23:09:40 +01:00
parent 8a6e3ab1e9
commit 1ed43f486d
2 changed files with 7 additions and 7 deletions

View file

@ -82,13 +82,13 @@ config.load_autoconfig(True)
# c.changelog_after_upgrade = 'minor' # c.changelog_after_upgrade = 'minor'
colors_ftpd = { colors_ftpd = {
'bg': '#272822', 'bg': '#0f1419',
'fg': '#f8f8f2', 'fg': '#e6e1cf',
'sel-bg': '#005577', 'sel-bg': '#005577',
'sel-fg': '#ffffff', 'sel-fg': '#ffffff',
'err-bg': '#770000', 'err-bg': '#770000',
'err-fg': '#ffffff', 'err-fg': '#ffffff',
'black': '#161616', 'black': '#000000',
'red': '#bb0000', 'red': '#bb0000',
'green': '#a6e22d', 'green': '#a6e22d',
'yellow': '#fff27f', 'yellow': '#fff27f',
@ -333,11 +333,11 @@ c.colors.statusbar.caret.selection.fg = colors_ftpd['black']
## Background color of the statusbar in command mode. ## Background color of the statusbar in command mode.
## Type: QssColor ## Type: QssColor
c.colors.statusbar.command.bg = colors_ftpd['sel-bg'] c.colors.statusbar.command.bg = colors_ftpd['bg']
## Foreground color of the statusbar in command mode. ## Foreground color of the statusbar in command mode.
## Type: QssColor ## Type: QssColor
c.colors.statusbar.command.fg = colors_ftpd['sel-fg'] c.colors.statusbar.command.fg = colors_ftpd['fg']
## Background color of the statusbar in private browsing + command mode. ## Background color of the statusbar in private browsing + command mode.
## Type: QssColor ## Type: QssColor
@ -2091,7 +2091,7 @@ c.url.open_base_url = True
## qutebrowser`. ## qutebrowser`.
## Type: Dict ## Type: Dict
# c.url.searchengines = {'DEFAULT': 'https://html.duckduckgo.com/html/?q={}'} # c.url.searchengines = {'DEFAULT': 'https://html.duckduckgo.com/html/?q={}'}
c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}'} c.url.searchengines = {'DEFAULT': 'https://html.duckduckgo.com/html/?q={}'}
## Page(s) to open at the start. ## Page(s) to open at the start.
## Type: List of FuzzyUrl, or FuzzyUrl ## Type: List of FuzzyUrl, or FuzzyUrl

View file

@ -7,7 +7,7 @@
</head> </head>
<style> <style>
body { background-color: #272822 } body { background-color: #0f1419 }
</style> </style>
</html> </html>