mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
Upstream has renamed the binary from 'chrome' to 'helium' and our executable still pointed to /opt/helium/chrome. Closes: https://bugs.gentoo.org/969188 Signed-off-by: Jonas Frei <freijon@pm.me>
10 lines
306 B
Bash
10 lines
306 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
export LD_LIBRARY_PATH="/opt/helium${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
|
|
|
|
# Custom flags (add your chrome://flags overrides here)
|
|
# Example: EXTRA_FLAGS="--force-dark-mode --enable-features=VaapiVideoDecoder"
|
|
EXTRA_FLAGS=""
|
|
|
|
exec /opt/helium/helium $EXTRA_FLAGS "$@"
|