2022-04-15 09:10:42 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-09-28 19:35:16 +02:00
|
|
|
# To run Microsoft Edge under Wayland
|
|
|
|
# with Mullvad proxy
|
2022-04-19 20:05:40 +02:00
|
|
|
# Wireguard: --proxy-server=socks5://10.64.0.1
|
|
|
|
# OpenVPN: --proxy-server=socks5://10.8.0.1
|
2022-04-15 09:10:42 +02:00
|
|
|
|
|
|
|
set -x
|
2023-05-03 10:47:42 +02:00
|
|
|
/usr/bin/microsoft-edge --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer,VaapiVideoDecoder,VaapiIgnoreDriverChecks,BraveVerticalTabs,EncryptedClientHello,UseDnsHttpsSvcbAlpn --ozone-platform-hint=auto --ignore-gpu-blocklist --enable-gpu-rasterization --enable-zero-copy --disable-gpu-driver-bug-workarounds --enable-native-gpu-memory-buffers $@
|
2022-04-15 09:10:42 +02:00
|
|
|
set +x
|