2 files changed,
119 insertions(+),
0 deletions(-)
Author:
Smirnov Olexandr
ss2316544@gmail.com
Committed at:
2020-10-17 14:39:11 +0300
Parent:
56f6d87
A
config/qutebrowser/autoconfig.yml
··· 1 +config_version: 2 2 +settings: 3 + colors.completion.category.bg: 4 + global: '#002b36' 5 + colors.completion.category.border.bottom: 6 + global: '#073642' 7 + colors.completion.category.border.top: 8 + global: '#073642' 9 + colors.completion.even.bg: 10 + global: '#073642' 11 + colors.completion.fg: 12 + global: '#ffffff' 13 + colors.completion.item.selected.bg: 14 + global: '#002b36' 15 + colors.completion.item.selected.border.bottom: 16 + global: '#002b36' 17 + colors.completion.item.selected.border.top: 18 + global: '#002b36' 19 + colors.completion.item.selected.fg: 20 + global: '#93a1a1' 21 + colors.completion.odd.bg: 22 + global: '#073642' 23 + colors.completion.scrollbar.bg: 24 + global: '#073642' 25 + colors.completion.scrollbar.fg: 26 + global: '#002b36' 27 + colors.statusbar.caret.bg: 28 + global: '#002b36' 29 + colors.statusbar.command.bg: 30 + global: '#002b36' 31 + colors.statusbar.insert.bg: 32 + global: '#002b36' 33 + colors.statusbar.normal.bg: 34 + global: '#002b36' 35 + colors.statusbar.passthrough.bg: 36 + global: '#002b36' 37 + colors.statusbar.private.bg: 38 + global: '#6c71c4' 39 + colors.statusbar.url.error.fg: 40 + global: '#dc322f' 41 + colors.statusbar.url.fg: 42 + global: '#2aa198' 43 + colors.statusbar.url.success.http.fg: 44 + global: '#2aa198' 45 + colors.statusbar.url.success.https.fg: 46 + global: '#2aa198' 47 + colors.tabs.bar.bg: 48 + global: '#073642' 49 + colors.tabs.even.bg: 50 + global: '#073642' 51 + colors.tabs.indicator.error: 52 + global: '#dc322f' 53 + colors.tabs.indicator.start: 54 + global: '#002b36' 55 + colors.tabs.indicator.stop: 56 + global: '#002b36' 57 + colors.tabs.indicator.system: 58 + global: rgb 59 + colors.tabs.odd.bg: 60 + global: '#073642' 61 + colors.tabs.selected.even.bg: 62 + global: '#002b36' 63 + colors.tabs.selected.even.fg: 64 + global: '#073642' 65 + colors.tabs.selected.odd.bg: 66 + global: '#002b36' 67 + colors.tabs.selected.odd.fg: 68 + global: '#073642'
A
config/qutebrowser/config.py
··· 1 +## Generall 2 +c.url.start_pages = ["https://www.google.com"] # Start page 3 +config.load_autoconfig() # Load 4 + 5 +c.downloads.location.directory = '/home/sasha/Загрузки' # Download folder 6 +c.tabs.show = 'multiple' # When to show the tab bar. [always, never, multiple ,switching] 7 + 8 +config.set("colors.webpage.darkmode.enabled", True) # Dark mode on all site 9 + 10 +config.set('content.cookies.accept', 'all', 'chrome-devtools://*') # Accept to cookie 11 +config.set('content.cookies.accept', 'all', 'devtools://*') # Accept to cookie 12 + 13 +config.set('content.images', True, 'chrome-devtools://*') # Auto load images 14 +config.set('content.images', True, 'devtools://*') # Auto load images 15 + 16 +config.set('content.javascript.enabled', True, 'chrome-devtools://*') # Enable JavaScript 17 +config.set('content.javascript.enabled', True, 'devtools://*') # Enable JavaScript 18 +config.set('content.javascript.enabled', True, 'chrome://*/*') # Enable JavaScript 19 +config.set('content.javascript.enabled', True, 'qute://*/*') # Enable JavaScript 20 + 21 + 22 +## User agent 23 +config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}', 'https://web.whatsapp.com/') 24 +config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://accounts.google.com/*') 25 +config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*') 26 +config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://docs.google.com/*') 27 +config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://drive.google.com/*') 28 + 29 + 30 +## Search engines which can be used via the address bar. 31 +c.url.searchengines = { 32 + 'DEFAULT': 'https://duckduckgo.com/?q={}', 33 + 'archw': 'https://wiki.archlinux.org/?search={}', 34 + 'google': 'https://www.google.com/search?q={}', 35 + 'reddi': 'https://www.reddit.com/r/{}' 36 +} 37 + 38 + 39 +## Aiases 40 +c.aliases = { 41 + 'q': 'quit', 42 + 'w': 'session-save', 43 + 'wq': 'quit --save' 44 +} 45 + 46 +## Tabs 47 +c.tabs.position = "bottom" 48 +c.completion.shrink = True 49 + 50 + 51 +