Files
guru/www-client/helium-bin/files/helium
Jonas Frei 0d02ef000a www-client/helium-bin: Fixed executable which pointed to old location.
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>
2026-01-24 07:11:13 +01:00

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 "$@"