10 lines
271 B
Bash
Executable file
10 lines
271 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e # Exit immediately if a command exits with a non-zero status.
|
|
set -u # Treat unset variables as an error.
|
|
|
|
# Always make browser take up full screen
|
|
echo "--start-maximized"
|
|
|
|
# Disable sandboxing, which isn't supported in containers
|
|
echo "--no-sandbox"
|