Qutebrowser

This commit is contained in:
Pavel Korytov 2020-02-06 10:25:39 +03:00
parent a620c11a68
commit ca75876e1c
6 changed files with 75 additions and 0 deletions

1
qutebrowser/README.md Normal file
View file

@ -0,0 +1 @@
`git clone https://github.com/dracula/qutebrowser-dracula-theme.git dracula`

View file

@ -0,0 +1,36 @@
# If a config.py file exists, this file is ignored unless it's explicitly loaded
# via config.load_autoconfig(). For more information, see:
# https://github.com/qutebrowser/qutebrowser/blob/master/doc/help/configuring.asciidoc#loading-autoconfigyml
# DO NOT edit this file by hand, qutebrowser will overwrite it.
# Instead, create a config.py - see :help for details.
config_version: 2
settings:
content.notifications:
https://www.reddit.com: false
content.register_protocol_handler:
https://mail.google.com?extsrc=mailto&url=%25s: false
statusbar.widgets:
global:
- keypress
- url
- scroll
- history
- tabs
- progress
url.open_base_url:
global: false
url.searchengines:
global:
DEFAULT: https://duckduckgo.com/?q={}
g: https://www.google.com/search?hl=en&q={}
url.start_pages:
global: https://start.duckduckgo.com
url.yank_ignored_parameters:
global:
- ref
- utm_source
- utm_medium
- utm_campaign
- utm_term
- utm_content

View file

@ -0,0 +1,5 @@
https://www.reddit.com/ reddit: the front page of the internet
https://booky.io/ booky.io
qute://help/img/cheatsheet-big.png cheatsheet-big.png (3342×2060)
https://lastpass.com/?ac=1&lpnorefresh=1 My LastPass Vault
https://www.google.com/ Google

28
qutebrowser/config.py Normal file
View file

@ -0,0 +1,28 @@
import dracula.draw
config.load_autoconfig()
config.unbind('gt', mode='normal')
config.bind('gt', 'tab-next')
config.bind('gT', 'tab-prev')
config.bind('gN', 'tab-close')
config.bind('gn', 'tab-clone')
# config.unbind('T', mode='normal')
# config.bind('T', 'set-cmd-text -s :buffer')
config.bind('\\t', 'set-cmd-text -s :buffer')
config.bind('\\b', 'set-cmd-text -s :bookmark-load')
c.scrolling.bar = 'always'
c.url.searchengines = {
"DEFAULT": "https://duckduckgo.com/?q={}",
"g": "https://www.google.com/search?hl=en&q={}"
}
dracula.draw.blood(c, {
'spacing': {
'vertical': 6,
'horizontal': 8
}
})

View file

@ -0,0 +1,5 @@
[FileDialog]
history=@Invalid()
lastVisited=file:///home/pavel/Pictures
qtVersion=5.14.1
viewMode=Detail

0
qutebrowser/quickmarks Normal file
View file