diff --git a/README.md b/README.md index d1e9638..4005191 100644 --- a/README.md +++ b/README.md @@ -413,6 +413,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **03.04.25:** - Update chromium launch options to improve performance. * **10.02.24:** - Update Readme with new env vars and ingest proper PWA icon. * **06.01.24:** - Rebase to Debian Bookworm. * **17.01.24:** - Update bash wrappers to cleanup and detect seccomp. diff --git a/readme-vars.yml b/readme-vars.yml index 5dbd632..5b62a20 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -105,6 +105,7 @@ init_diagram: | "webcord:latest" <- Base Images # changelog changelogs: + - {date: "03.04.25:", desc: "Update chromium launch options to improve performance."} - {date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon."} - {date: "06.01.24:", desc: "Rebase to Debian Bookworm."} - {date: "17.01.24:", desc: "Update bash wrappers to cleanup and detect seccomp."} diff --git a/root/usr/bin/chromium b/root/usr/bin/chromium index bc67373..cecd044 100755 --- a/root/usr/bin/chromium +++ b/root/usr/bin/chromium @@ -10,7 +10,6 @@ fi # Run normally on privved containers or modified un non priv if grep -q 'Seccomp:.0' /proc/1/status; then ${BIN} \ - --ignore-gpu-blocklist \ --no-first-run \ --password-store=basic \ --simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT' \ @@ -18,7 +17,6 @@ if grep -q 'Seccomp:.0' /proc/1/status; then "$@" > /dev/null 2>&1 else ${BIN} \ - --ignore-gpu-blocklist \ --no-first-run \ --no-sandbox \ --password-store=basic \