]> git.sev.monster Git - dotfiles.git/commitdiff
add librewolf to installer
authorsev <git@sev.monster>
Thu, 14 Dec 2023 15:49:25 +0000 (09:49 -0600)
committersev <git@sev.monster>
Fri, 5 Apr 2024 21:27:41 +0000 (16:27 -0500)
install.sh

index 89d64d7975377dccf87c10344ee93d9a9217e61b..de5debae7f54286bfe32a35d4e4cdcab51dce134 100755 (executable)
@@ -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
This page took 0.040939 seconds and 4 git commands to generate.