diff options
author | Urbain Vaes <urbain@vaes.uk> | 2018-01-10 18:08:15 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2018-01-10 18:09:54 +0100 |
commit | d2fd6ad884c7e0e7a756b17b6ce6f6e55d756ebc (patch) | |
tree | d3d8b4df754f5381aae2f5ba99cb682bd69a78dc /qutebrowser | |
parent | da2faa252620a24531c6e2ac112805dc9e6265bc (diff) |
[qutebrowser] Minor changes in config
Diffstat (limited to 'qutebrowser')
-rw-r--r-- | qutebrowser/.config/qutebrowser/config.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 20cbb0c..0eb7304 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -6,6 +6,7 @@ c.downloads.location.prompt = False c.editor.command = ['urxvt', '-e', 'nvim', '-f', '{}'] c.hints.chars = 'aoeuidhtns' c.hints.uppercase = True +c.statusbar.hide = True c.tabs.favicons.show = False c.tabs.show = 'multiple' c.tabs.tabs_are_windows = True @@ -18,8 +19,8 @@ config.bind(",d", 'spawn --userscript dictionary-search') config.bind(",h", 'spawn --userscript explorer -h') config.bind(",p", 'spawn --userscript explorer') config.bind(",t", 'spawn --userscript explorer -t') -config.bind(",v", 'spawn mpv {url}') -config.bind(";v", 'hint links spawn mpv {hint-url}') +config.bind(",v", 'spawn -d mpv {url}') +config.bind(";v", 'hint links spawn -d mpv {hint-url}') config.bind("]d", 'set downloads.location.prompt True') config.bind("[d", 'set downloads.location.prompt False') config.unbind("d") |