Skip to content

Commit

Permalink
Create microsoft-edge
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbelgium authored Jan 28, 2025
1 parent 92bec2b commit e3b73da
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions webtop_kde/rootfs/usr/bin/microsoft-edge
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#! /bin/bash

BIN=/usr/bin/microsoft-edge-real

# Run normally on privved containers or modified un non priv
if grep -q 'Seccomp:.0' /proc/1/status; then
${BIN} \
--password-store=basic \
"$@" > /dev/null 2>&1
else
${BIN} \
--password-store=basic \
--no-sandbox \
--test-type \
"$@" > /dev/null 2>&1
fi

0 comments on commit e3b73da

Please sign in to comment.