mirror of
https://github.com/linuxserver/docker-msedge.git
synced 2026-02-20 05:48:33 +08:00
15 lines
238 B
Bash
Executable File
15 lines
238 B
Bash
Executable File
#! /bin/bash
|
|
|
|
BIN=/usr/bin/microsoft-edge-real
|
|
|
|
# Cleanup
|
|
if ! pgrep msedge > /dev/null;then
|
|
rm -f $HOME/.config/microsoft-edge/Singleton*
|
|
fi
|
|
|
|
${BIN} \
|
|
--password-store=basic \
|
|
--no-sandbox \
|
|
--test-type \
|
|
"$@" > /dev/null 2>&1
|