]> git.rmz.io Git - dotfiles.git/blob - qutebrowser/proxy.pac
bin/maic: set pipefail to fail in case maim was cancelled
[dotfiles.git] / qutebrowser / proxy.pac
1 function FindProxyForURL(url, host) {
2 if (shExpMatch(host, "*slack*")) {
3 return "DIRECT";
4 }
5 if (shExpMatch(host, "*focalpointpositioning*"))
6 {
7 return "SOCKS5 localhost:1080";
8 }
9
10 return "DIRECT";
11 }