2022-07-06 11:10:00 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-09-28 20:35:16 +03:00
|
|
|
# To run Brave under Wayland
|
|
|
|
# with Mullvad proxy
|
2022-07-06 11:10:00 +03:00
|
|
|
# Wireguard: --proxy-server=socks5://10.64.0.1
|
|
|
|
# OpenVPN: --proxy-server=socks5://10.8.0.1
|
|
|
|
|
|
|
|
set -x
|
2023-05-18 12:25:47 +03:00
|
|
|
/usr/bin/brave-browser-stable --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturerBraveVerticalTabs,EncryptedClientHello,UseDnsHttpsSvcbAlpn --ozone-platform-hint=auto $@
|
2023-05-08 20:07:06 +03:00
|
|
|
# --enable-features=,VaapiVideoDecoder,VaapiIgnoreDriverChecks,WebContentsForceDark --ignore-gpu-blocklist --enable-gpu-rasterization --enable-zero-copy --disable-gpu-driver-bug-workarounds --enable-native-gpu-memory-buffers
|
2022-07-06 11:10:00 +03:00
|
|
|
set +x
|