add initial version

This commit is contained in:
thelamer
2023-03-18 12:58:16 -07:00
parent 5d0a11c44c
commit c02e0b7b1d
24 changed files with 2553 additions and 1 deletions

22
root/defaults/autostart Normal file
View File

@@ -0,0 +1,22 @@
#! /bin/bash
# Only start in no-sandbox mode on unpriv systems
if grep -q 'Seccomp: 0' /proc/1/status; then
chromium-browser \
--ignore-gpu-blocklist \
--no-first-run \
--password-store=basic \
--simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT' \
--start-maximized \
--user-data-dir > /dev/null 2>&1
else
chromium-browser \
--ignore-gpu-blocklist \
--no-first-run \
--no-sandbox \
--password-store=basic \
--simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT' \
--start-maximized \
--test-type \
--user-data-dir > /dev/null 2>&1
fi