Files
omarchycn/install/helpers/as-root.sh
T
acrogenesis 95b791af16 Stop world-writable browser policy directories
Chromium managed policy is mandatory for every profile. World-writable
dirs let any local uid plant policy, including force-installed
extensions. Write goes through the omarchy-browser-policy group at 2775
so theme colour still works without other-write.
2026-08-25 12:04:02 -06:00

8 lines
76 B
Bash

as_root() {
if (( EUID == 0 )); then
"$@"
else
sudo "$@"
fi
}