2022-07-06 10:10:00 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-09-28 19:35:16 +02:00
|
|
|
# To run Brave under Wayland
|
|
|
|
# with Mullvad proxy
|
2022-07-06 10:10:00 +02:00
|
|
|
# Wireguard: --proxy-server=socks5://10.64.0.1
|
|
|
|
# OpenVPN: --proxy-server=socks5://10.8.0.1
|
|
|
|
|
|
|
|
set -x
|
2023-05-18 11:25:47 +02:00
|
|
|
/usr/bin/brave-browser-stable --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturerBraveVerticalTabs,EncryptedClientHello,UseDnsHttpsSvcbAlpn --ozone-platform-hint=auto $@
|
2023-05-08 19:07:06 +02: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 10:10:00 +02:00
|
|
|
set +x
|