From acd7f1f95c51e1419103bf2eef8d01af3dc2277a Mon Sep 17 00:00:00 2001 From: Thomas Dehaeze Date: Mon, 7 Feb 2022 16:15:50 +0100 Subject: [PATCH] Easily enable/disable proxy --- qutebrowser.org | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qutebrowser.org b/qutebrowser.org index e3e95f0..dee556f 100644 --- a/qutebrowser.org +++ b/qutebrowser.org @@ -282,6 +282,11 @@ c.aliases['Password_Add'] = 'spawn --userscript ~/.config/qutebrowser/userscript config.bind(',P', 'Password_Add') #+end_src +#+begin_src python +c.aliases['proxy_on'] = 'set content.proxy socks5://localhost:8080' +c.aliases['proxy_off'] = 'config-unset content.proxy' +#+end_src + Use Pass to fill password and username (configuration is done in =~/.config/qutebrowser/password_fill_rc=) #+begin_src python c.aliases['Password_Fill'] = 'spawn --userscript password_fill'