dotfiles/.config/qutebrowser/config.py

105 lines
3.0 KiB
Python
Raw Normal View History

2019-09-25 20:07:56 +02:00
config, c = config, c
2019-05-28 17:44:30 +02:00
# Default encoding to use for websites.
c.content.default_encoding = 'utf-8'
# Value to send in the Accept-Language header.
c.content.headers.accept_language = 'en_GB,en'
# User agent to send.
2019-10-21 09:51:06 +02:00
c.content.headers.user_agent = ' '.join((
2019-05-28 17:44:30 +02:00
'Mozilla/5.0',
'(X11; Linux x86_64)',
2020-07-15 17:51:59 +02:00
'QtWebEngine/5.15.0',
'Chromium/80.0.3987.163',
'qutebrowser/1.13.0'
2019-10-21 09:51:06 +02:00
))
2019-05-28 17:44:30 +02:00
# Allow JavaScript to read from or write to the clipboard.
c.content.javascript.can_access_clipboard = True
# Allow pdf.js to view PDF files in the browser.
c.content.pdfjs = True
# Validate SSL handshakes.
c.content.ssl_strict = True
# Enable WebGL.
c.content.webgl = False
# Editor (and arguments) to use
# for the open-editor command.
c.editor.command = [
'konsole', '-e',
'nvim', '{file}',
'-c', 'normal {line}G{column0}l'
]
# Default monospace fonts.
c.fonts.web.family.fixed = ','.join((
2019-05-28 17:44:30 +02:00
'Hack',
'Fira Code',
'Code New Roman',
'Fantasque Sans Mono',
'DejaVu Sans Mono'
2019-10-21 09:51:06 +02:00
))
2019-05-28 17:44:30 +02:00
# Which Chromium process model to use.
c.qt.process_model = 'process-per-site'
# Languages to use for spell checking.
2019-11-24 15:50:07 +01:00
c.spellcheck.languages = ['en-GB', 'en-US', 'el-GR']
2019-05-28 17:44:30 +02:00
# List of widgets displayed in the statusbar.
2019-11-24 15:50:07 +01:00
c.statusbar.widgets = ['keypress', 'url', 'history', 'tabs', 'progress']
2019-05-28 17:44:30 +02:00
2020-01-20 08:03:32 +01:00
c.url.start_pages = [
# {{{1
2019-05-28 17:44:30 +02:00
"""https://search.disroot.org/?preferences=
2020-01-20 08:03:32 +01:00
eJx1VU3P2zYM_jXzxUixroedfBg2DCtQ4C2adFeDlmi
bjSS6opy83q8fFX_EedNeElgm-XyQoiPK6JLUHOqA1z
pBU_0NTrCwTHVEYXfBWImhQz8279K1cBC6ETqsMBy-H
gvHBlx-KCwJNA5tPbixoyDVv-QPjs5Y95zOOMkvv_35
MmDIVRWydhTOG24T-SoYM36O-xhaCpSwFhPZuTXzD2N
QpP7r5aMWuUYNKMgrl3qI_DpVpzhiAWNiw35wmLAqBF
oUhGj66tci9eixYjEQCwyPZI_o2lphOXpIxCGzOEUwZ
yX19csnxfOsTujpP6fT5-OKr8_HW_ksxEDCjuNUCzo0
6e4IBsVAqVhFAEUcxsaRmXFq1UgYTC7VRsRSuE1XiFh
ajTQp16sp6dsLQ9JoNgSu9GgJ9LABwX2JMAHU9YUscp
YwBhkcSK8lslH5qGPuHJZ6PJUwDEqgJXd7Y6lr0v1xs
M1D6Y46lQOiIR0GjJD7EtFa0hNtYs7RdolEbPd5gh5C
IlOK6dlBfKa7cVsNspBUV3owZ8_bj0Kmrm9_GdWYQ7r
sZK-s7jw7xHMij7KYSWFvk6dMXI0vwYBFn4vfkRdftu
iFyfy8OwfTCY_PgTNlvhDuo9-_7oTb0ep87_gKoh1Qh
28Tqe8S80LfjDEqu2mf4unVOB7tPeX7VY0v54l5mhzU
K0d2X6CFmAGWVvbQRMg_C2SecrpgSbLPWTWvkG3Ua01
gdtoSnydOLD2fIewiZ7QfSd48aiN4cNREXEhM0DOXme
HG009e72acyhQhiNM7aH9EcJ1qz990FPYRs0sPNR03k
vBdXKelvzVyebjzXGu-UbjRXwZnVfwmbM0W_C-Af3DC
QIilpDiaNEaUN8PYPfVyXnGGLZb5ZyGqa8ZnM-7J7z9
8-P11R3CXZ9ksadZ2pcXbAp4X1LOZc2-3Jbrut2XeH6
3U7oF2JxeRx9lZwn-6FlaD1tv8RnS3NOWp4MxuN4ENp
WbUVZ4WhWvBLWDGu_Wp8Jh6ttXnl-OpWDY6ZW0zSnH7
fBwkTfrVc9xRNu9ysBDP_wMVWr6s
""".replace('\n', '').replace(' ', '')
# }}}
]
2019-05-28 17:44:30 +02:00
# Search engines which can be used via the address bar.
c.url.searchengines = {
'DEFAULT': c.url.start_pages[0] + '&q={}',
2020-04-25 21:12:40 +02:00
'G': 'https://google.com/search?q={}',
2019-09-25 20:07:56 +02:00
'Q': 'https://qwant.com/?q={}'
2019-05-28 17:44:30 +02:00
}
# Keybindings {{{0
2020-10-12 15:22:20 +02:00
config.bind('<Ctrl-Shift-I>', 'devtools')
2019-05-28 17:44:30 +02:00
config.bind(';m', 'spawn mpv {url}')
config.bind(';M', 'hint links spawn mpv {hint-url}')
# }}}
# Load autoconfig.yml
config.load_autoconfig()
2019-09-25 20:07:56 +02:00
# vim:fdm=marker:fdl=0: