build improvements (#1886)

* build improvements

* no workdir

* kiosk fully working

* setup profile prefs
This commit is contained in:
Aiden McClelland
2022-10-25 16:23:29 -06:00
parent 1cfd404321
commit 26d2152a36
7 changed files with 100 additions and 20 deletions

12
build/lib/proxy.pac Normal file
View File

@@ -0,0 +1,12 @@
function FindProxyForURL(url, host)
{
if (shExpMatch(host, "*.onion"))
{
return "SOCKS5 127.0.0.1:9050";
}
return "DIRECT";
}
function FindProxyForURLEx(url, host) {
return FindProxyForURL(url, host);
}