update qutebrowser and use webengine
This commit is contained in:
parent
28d24f395d
commit
4a5e965072
@ -27,8 +27,7 @@
|
|||||||
#
|
#
|
||||||
# For simple keys (no `<>`-signs), a capital letter means the key is pressed
|
# For simple keys (no `<>`-signs), a capital letter means the key is pressed
|
||||||
# with Shift. For special keys (with `<>`-signs), you need to explicitly add
|
# with Shift. For special keys (with `<>`-signs), you need to explicitly add
|
||||||
# `Shift-` to match a key pressed with shift. You can bind multiple commands
|
# `Shift-` to match a key pressed with shift.
|
||||||
# by separating them with `;;`.
|
|
||||||
#
|
#
|
||||||
# Note that default keybindings are always bound, and need to be explicitly
|
# Note that default keybindings are always bound, and need to be explicitly
|
||||||
# unbound if you wish to remove them:
|
# unbound if you wish to remove them:
|
||||||
@ -287,7 +286,7 @@ set-cmd-text -s :set
|
|||||||
set-cmd-text -s :set -t
|
set-cmd-text -s :set -t
|
||||||
sl
|
sl
|
||||||
|
|
||||||
set-cmd-text -s :set keybind
|
set-cmd-text -s :bind
|
||||||
sk
|
sk
|
||||||
|
|
||||||
zoom-out
|
zoom-out
|
||||||
@ -544,8 +543,8 @@ completion-item-focus prev-category
|
|||||||
# bind special keys.
|
# bind special keys.
|
||||||
# Useful hidden commands to map in this section:
|
# Useful hidden commands to map in this section:
|
||||||
# * `prompt-accept`: Confirm the entered value.
|
# * `prompt-accept`: Confirm the entered value.
|
||||||
# * `prompt-yes`: Answer yes to a yes/no question.
|
# * `prompt-accept yes`: Answer yes to a yes/no question.
|
||||||
# * `prompt-no`: Answer no to a yes/no question.
|
# * `prompt-accept no`: Answer no to a yes/no question.
|
||||||
|
|
||||||
prompt-accept
|
prompt-accept
|
||||||
<return>
|
<return>
|
||||||
@ -555,10 +554,10 @@ prompt-accept
|
|||||||
<enter>
|
<enter>
|
||||||
<shift-enter>
|
<shift-enter>
|
||||||
|
|
||||||
prompt-yes
|
prompt-accept yes
|
||||||
y
|
y
|
||||||
|
|
||||||
prompt-no
|
prompt-accept no
|
||||||
n
|
n
|
||||||
|
|
||||||
rl-complete-path
|
rl-complete-path
|
||||||
|
@ -38,6 +38,11 @@
|
|||||||
# The default page(s) to open at the start, separated by commas.
|
# The default page(s) to open at the start, separated by commas.
|
||||||
# Default: https://duckduckgo.com
|
# Default: https://duckduckgo.com
|
||||||
#
|
#
|
||||||
|
# yank-ignored-url-parameters (List of String):
|
||||||
|
# The URL parameters to strip with :yank url, separated by commas.
|
||||||
|
# Default:
|
||||||
|
# ref,utm_source,utm_medium,utm_campaign,utm_term,utm_content
|
||||||
|
#
|
||||||
# default-page (FuzzyUrl):
|
# default-page (FuzzyUrl):
|
||||||
# The page to open if :open -t/-b/-w is used without URL. Use
|
# The page to open if :open -t/-b/-w is used without URL. Use
|
||||||
# `about:blank` for a blank page.
|
# `about:blank` for a blank page.
|
||||||
@ -160,6 +165,7 @@
|
|||||||
# Default: path,query
|
# Default: path,query
|
||||||
ignore-case = smart
|
ignore-case = smart
|
||||||
startpage = https://calendar.google.com
|
startpage = https://calendar.google.com
|
||||||
|
yank-ignored-url-parameters = ref,utm_source,utm_medium,utm_campaign,utm_term,utm_content
|
||||||
default-page = ${startpage}
|
default-page = ${startpage}
|
||||||
auto-search = naive
|
auto-search = naive
|
||||||
auto-save-config = true
|
auto-save-config = true
|
||||||
@ -372,10 +378,12 @@ custom-headers =
|
|||||||
[completion]
|
[completion]
|
||||||
# Options related to completion and command history.
|
# Options related to completion and command history.
|
||||||
#
|
#
|
||||||
# auto-open (Bool):
|
# show (String):
|
||||||
# Automatically open completion when typing.
|
# When to show the autocompletion window.
|
||||||
# Valid values: true, false
|
# always: Whenever a completion is available.
|
||||||
# Default: true
|
# auto: Whenever a completion is requested.
|
||||||
|
# never: Never.
|
||||||
|
# Default: always
|
||||||
#
|
#
|
||||||
# download-path-suggestion (String):
|
# download-path-suggestion (String):
|
||||||
# What to display in the download filename input.
|
# What to display in the download filename input.
|
||||||
@ -388,11 +396,6 @@ custom-headers =
|
|||||||
# How to format timestamps (e.g. for history)
|
# How to format timestamps (e.g. for history)
|
||||||
# Default: %Y-%m-%d
|
# Default: %Y-%m-%d
|
||||||
#
|
#
|
||||||
# show (Bool):
|
|
||||||
# Whether to show the autocompletion window.
|
|
||||||
# Valid values: true, false
|
|
||||||
# Default: true
|
|
||||||
#
|
|
||||||
# height (PercOrInt):
|
# height (PercOrInt):
|
||||||
# The height of the completion, in px or as percentage of the
|
# The height of the completion, in px or as percentage of the
|
||||||
# window.
|
# window.
|
||||||
@ -427,10 +430,9 @@ custom-headers =
|
|||||||
# scrollbar-padding (Int):
|
# scrollbar-padding (Int):
|
||||||
# Padding of scrollbar handle in completion window (in px).
|
# Padding of scrollbar handle in completion window (in px).
|
||||||
# Default: 2
|
# Default: 2
|
||||||
auto-open = true
|
show = always
|
||||||
download-path-suggestion = path
|
download-path-suggestion = path
|
||||||
timestamp-format = %Y-%m-%d
|
timestamp-format = %Y-%m-%d
|
||||||
show = true
|
|
||||||
height = 50%
|
height = 50%
|
||||||
cmd-history-max-items = 100
|
cmd-history-max-items = 100
|
||||||
web-history-max-items = 100
|
web-history-max-items = 100
|
||||||
@ -793,8 +795,9 @@ cache-size = 52428800
|
|||||||
# Valid values: true, false, ask
|
# Valid values: true, false, ask
|
||||||
# Default: ask
|
# Default: ask
|
||||||
#
|
#
|
||||||
# javascript-can-open-windows (Bool):
|
# javascript-can-open-windows-automatically (Bool):
|
||||||
# Whether JavaScript programs can open new windows.
|
# Whether JavaScript programs can open new windows without user
|
||||||
|
# interaction.
|
||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
#
|
#
|
||||||
@ -881,7 +884,7 @@ css-regions = true
|
|||||||
hyperlink-auditing = false
|
hyperlink-auditing = false
|
||||||
geolocation = ask
|
geolocation = ask
|
||||||
notifications = ask
|
notifications = ask
|
||||||
javascript-can-open-windows = false
|
javascript-can-open-windows-automatically = false
|
||||||
javascript-can-close-windows = false
|
javascript-can-close-windows = false
|
||||||
javascript-can-access-clipboard = false
|
javascript-can-access-clipboard = false
|
||||||
ignore-javascript-prompt = false
|
ignore-javascript-prompt = false
|
||||||
|
3
local/bin/qutebrowsengine
Executable file
3
local/bin/qutebrowsengine
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
/home/noctua/.local/bin/qutebrowser --debug --backend webengine "$@" &> /data/programming/qutebrowser/recent.log
|
Loading…
Reference in New Issue
Block a user