From 54b4032b4e27434a13b14a1816ed33b039073be8 Mon Sep 17 00:00:00 2001 From: sev Date: Thu, 14 Dec 2023 09:49:25 -0600 Subject: [PATCH] add librewolf to installer --- install.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 89d64d7..de5deba 100755 --- a/install.sh +++ b/install.sh @@ -131,7 +131,20 @@ fi if command -v ssh >$devnull 2>&1; then mkdir -pm 700 "$DEST/.ssh" find ssh -mindepth 1 -maxdepth 1 | while read -r x; do - l ".$x"; done + l ".$x" + done +fi + +# librewolf +if command -v librewolf >$devnull 2>&1; then + # XXX: MOZ_USER_DIR is compiletime, can't move to .config + mkdir -p "$DEST/.librewolf/chrome" + find librewolf -mindepth 1 -maxdepth 1 -type f | while read -r x; do + l ".$x" + done + find librewolf/chrome -mindepth 1 -maxdepth 1 -type f | while read -r x; do + l ".$x" + done fi # termux, assume it if android -- 2.47.0