1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Autogenerated config.py
- # Documentation:
- # qute://help/configuring.html
- # qute://help/settings.html
- # Uncomment this to still load settings configured via autoconfig.yml
- # config.load_autoconfig()
- # Store cookies. Note this option needs a restart with QtWebEngine on Qt
- # < 5.9.
- # Type: Bool
- c.content.cookies.store = False
- # Enable JavaScript.
- # Type: Bool
- config.set('content.javascript.enabled', True, 'file://*')
- # Enable JavaScript.
- # Type: Bool
- config.set('content.javascript.enabled', True, 'chrome://*/*')
- # Enable JavaScript.
- # Type: Bool
- config.set('content.javascript.enabled', True, 'qute://*/*')
- # Make characters in hint strings uppercase.
- # Type: Bool
- c.hints.uppercase = True
- # Font used for the hints.
- # Type: Font
- c.fonts.hints = 'bold 16pt monospace'
- c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}', 'wikiwand': 'https://www.wikiwand.com/en/{}?fullSearch=false'}
- c.messages.timeout = 5000
- config.bind('wo', 'set-cmd-text -s :open -w')
- config.bind('wd', 'close')
- config.bind('sp', 'set-cmd-text -s :open -w startpage')
- config.bind('wk', 'set-cmd-text -s :open -w wikiwand')
|