From 9f2706ad30f24363dc897cccac5ef4fe6829fb7b Mon Sep 17 00:00:00 2001 From: lelgenio Date: Sat, 23 Nov 2019 15:51:13 -0300 Subject: [PATCH] qute... --- qutebrowser/.config/qutebrowser/config.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index d3e52f0..29418dd 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -11,6 +11,10 @@ # Type: Dict c.aliases = {'q': 'close', 'qa': 'quit', 'w': 'session-save', 'wq': 'quit --save', 'wqa': 'quit --save'} +# Always restore open sites when qutebrowser is reopened. +# Type: Bool +c.auto_save.session = True + # User agent to send. Unset to send the default. Note that the value # read from JavaScript is always the global value. # Type: String @@ -275,7 +279,7 @@ c.fonts.tabs = '14px Inter' # Bindings for normal mode config.bind(',m', 'spawn --userscript view_in_mpv') -config.bind(';m', 'hint links spawn mpv {hint-url}') +config.bind(';m', 'hint links spawn mpv --fs {hint-url}') config.bind('J', 'tab-prev') config.bind('K', 'tab-next') config.bind('j', 'scroll down')