From 585d21d1838b9664d81e6dfb4c2225c429b86c9e Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Mon, 2 Jan 2023 19:55:34 +0100 Subject: deploy.sh: copy userChrome.css instead of symlinking --- deploy.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index c437402..86cee5e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -26,5 +26,6 @@ for profile in ${HOME}/.mozilla/firefox/*.default ${HOME}/.mozilla/firefox/*.def [ ! -d "$profile" ] && continue mkdir -p "$profile/chrome" ln -sf ${CONFIG_DIR}/firefox/user.js "$profile/user.js" - ln -sf ${CONFIG_DIR}/firefox/userChrome.css "$profile/chrome/userChrome.css" + # userChrome.css needs to be copied, as sandbox can't resolve symlink + cp ${CONFIG_DIR}/firefox/userChrome.css "$profile/chrome/userChrome.css" done -- cgit v1.2.3