From gena_1 at list.ru Fri Aug 14 18:36:48 2020 From: gena_1 at list.ru (=?UTF-8?B?0JPQtdC90LAg0JM=?=) Date: Fri, 14 Aug 2020 19:36:48 +0300 Subject: [qutebrowser] =?utf-8?q?Is_any_way_to_disable_WebRTC_=3F?= Message-ID: <1597423008.386132723@f153.i.mail.ru> Hello. ? I use your qutebrowser via proxy. I set: ... sys.argv.append('--qt-arg') sys.argv.append('content.webrtc_ip_handling_policy') sys.argv.append('disable-non-proxied-udp') ... This is not working via proxy?(socks or http) . Real public IP transfered via STUN . ? Is any other way to?disable WebRTC or make fake IP ? ? Thanks. ? ? -- ????????? ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at the-compiler.org Fri Aug 14 18:47:04 2020 From: me at the-compiler.org (Florian Bruhin) Date: Fri, 14 Aug 2020 18:47:04 +0200 Subject: [qutebrowser] Is any way to disable WebRTC ? In-Reply-To: <1597423008.386132723@f153.i.mail.ru> References: <1597423008.386132723@f153.i.mail.ru> Message-ID: <20200814164704.ko43f2tss2mev5j4@hooch.localdomain> Hey, Note you're not subscribed to the mailinglist, so your post was held back. I approved it and whitelisted you, but you won't see answers from people unless they explicitly add you to Cc. On Fri, Aug 14, 2020 at 07:36:48PM +0300, ???? ? via qutebrowser wrote: > I set: > ... > sys.argv.append('--qt-arg') > sys.argv.append('content.webrtc_ip_handling_policy') > sys.argv.append('disable-non-proxied-udp') > ... > This is not working via proxy?(socks or http) . Real public IP transfered via STUN . I don't understand what you're doing here. You're modifying sys.argv (of what?) in Python to add --qt-arg, but then pass the name of a qutebrowser setting to it? Can you explain where you got this from, or do you know if there's any documentation qutebrowser could improve to make this clearer? If this is from a config.py, you'll want to do this: c.content.webrtc_ip_handling_policy = 'disable-non-proxied-udp' Or you could use :set to achieve the same, see the docs for details: https://github.com/qutebrowser/qutebrowser/blob/master/doc/help/configuring.asciidoc Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From me at the-compiler.org Fri Aug 14 19:31:24 2020 From: me at the-compiler.org (Florian Bruhin) Date: Fri, 14 Aug 2020 19:31:24 +0200 Subject: [qutebrowser] Is any way to disable WebRTC ? In-Reply-To: <1597424985.114233046@f512.i.mail.ru> References: <1597423008.386132723@f153.i.mail.ru> <20200814164704.ko43f2tss2mev5j4@hooch.localdomain> <1597424985.114233046@f512.i.mail.ru> Message-ID: <20200814173124.7r5eriwv6x72yta5@hooch.localdomain> On Fri, Aug 14, 2020 at 08:09:46PM +0300, ???? ? wrote: > > You're modifying sys.argv (of what?)? in Python to add --qt-arg, but then > > pass the name of a qutebrowser setting to it? > > Yes, right. This? --qt-arg is correct and working. (it is fragment > of?starting qutebrowser with command?line options from other application) The arguments to --qt-arg are not correct, and as you can see, not working. > But my question is about to disable?WebRTC whet I connect via proxy. > I see only one way now ? try to?compile WebEngine with out WebRtc support . > Did?you know other way to?disable?WebRTC ? Set content.webrtc_ip_handling_policy to disable-non-proxied-udp properly (make sure you restart after setting it, and make sure it's actually set via ":set content.webrtc_ip_handling_policy?"). I just tried with a SOCKS proxy and https://browserleaks.com/webrtc - as I'd expect, no IP is visible there. Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From pauloalibano at hotmail.com Wed Aug 19 17:20:12 2020 From: pauloalibano at hotmail.com (=?iso-8859-1?Q?Paulo_Silva_de_Al=EDbano?=) Date: Wed, 19 Aug 2020 15:20:12 +0000 Subject: [qutebrowser] Editing command/url line Message-ID: I am looking for something similar to Bash's edit-and-execute-command. That is, when typing a commnad, say ":open -t www.anwebsite.com/d1/d2/d3", I would like to drop to my editor. The editor would have the same contents of the command line, ":open -t www.anwebsite.com/d1/d2/d3", and I would be able to edit the line and after quitting the editor, the edited line would be executed in Qutebrowser. I thought edit-command was what I needed, so I tried to add config.bind('','edit-command') to the config file. However, the shortcut only works if I am in "normal mode", which does not help because the command line will be empty. Nothing happens when I am typing something in the command line and try Ctrl-B. Any idea? Thanks! Paulo -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at the-compiler.org Wed Aug 19 17:25:25 2020 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 19 Aug 2020 17:25:25 +0200 Subject: [qutebrowser] Editing command/url line In-Reply-To: References: Message-ID: <20200819152525.regd6bflpczqlw4l@hooch.localdomain> Hey Paulo, On Wed, Aug 19, 2020 at 03:20:12PM +0000, Paulo Silva de Al?bano wrote: > I thought edit-command was what I needed, so I tried to add > ???? config.bind('','edit-command') > to the config file. However, the shortcut only works if I am in "normal > mode", which does not help because the command line will be empty. Nothing > happens when I am typing something in the command line and try Ctrl-B. Any > idea? Bind the key in command mode instead, via mode='command' - see: https://github.com/qutebrowser/qutebrowser/blob/master/doc/help/configuring.asciidoc#binding-keys Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: