X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/9e86e4da5728e713a1e561548457d65d08dece7c..1c89bd14849b914e9c62febdb065fbf66db53aed:/qutebrowser/proxy.pac?ds=inline diff --git a/qutebrowser/proxy.pac b/qutebrowser/proxy.pac new file mode 100644 index 0000000..8d2ec82 --- /dev/null +++ b/qutebrowser/proxy.pac @@ -0,0 +1,11 @@ +function FindProxyForURL(url, host) { + if (shExpMatch(host, "*slack*")) { + return "DIRECT"; + } + if (shExpMatch(host, "*focalpointpositioning*")) + { + return "SOCKS5 localhost:1080"; + } + + return "DIRECT"; +}