mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-14 20:49:23 +01:00
11 lines
351 B
Bash
Executable File
11 lines
351 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# To run Brave under Wayland
|
|
# with Mullvad proxy
|
|
# Wireguard: --proxy-server=socks5://10.64.0.1
|
|
# OpenVPN: --proxy-server=socks5://10.8.0.1
|
|
|
|
set -x
|
|
/usr/bin/brave-browser-stable --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer,WebUIDarkMode --ozone-platform=wayland --force-dark-mode $@
|
|
set +x
|