diff --git a/config/qutebrowser/keys.conf b/config/qutebrowser/keys.conf index 8bfe8d3..d7d951c 100644 --- a/config/qutebrowser/keys.conf +++ b/config/qutebrowser/keys.conf @@ -428,6 +428,21 @@ spawn youtube-viewer {url} hint links spawn youtube-viewer {hint-url} ;x +open -w + + +enter-mode set_mark + ` + +enter-mode jump_mark + ' + +yank -p + yp + +yank -ps + yP + [insert] # Keybindings for insert mode. # Since normal keypresses are passed through, only special keys are diff --git a/config/qutebrowser/qutebrowser.conf b/config/qutebrowser/qutebrowser.conf index 3d51795..6b9ab4a 100644 --- a/config/qutebrowser/qutebrowser.conf +++ b/config/qutebrowser/qutebrowser.conf @@ -347,6 +347,10 @@ hide-wayland-decoration = false # Whether to try to pre-fetch DNS entries to speed up browsing. # Valid values: true, false # Default: true +# +# custom-headers (HeaderDict): +# Set custom headers for qutebrowser HTTP requests. +# Default: do-not-track = true accept-language = en-US,en referer-header = same-domain @@ -355,6 +359,7 @@ proxy = system proxy-dns-requests = true ssl-strict = ask dns-prefetch = true +custom-headers = [completion] # Options related to completion and command history. diff --git a/local/bin/qutebrowser b/local/bin/qutebrowser index 7a27953..6c87f3e 100755 --- a/local/bin/qutebrowser +++ b/local/bin/qutebrowser @@ -1,10 +1,10 @@ #!/usr/bin/python3.4 -# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.6.0','gui_scripts','qutebrowser' -__requires__ = 'qutebrowser==0.6.0' +# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.6.1','gui_scripts','qutebrowser' +__requires__ = 'qutebrowser==0.6.1' import sys from pkg_resources import load_entry_point if __name__ == '__main__': sys.exit( - load_entry_point('qutebrowser==0.6.0', 'gui_scripts', 'qutebrowser')() + load_entry_point('qutebrowser==0.6.1', 'gui_scripts', 'qutebrowser')() )