aboutsummaryrefslogtreecommitdiff
path: root/librewolf.install
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-06 21:17:06 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-06 21:17:06 +0100
commit8378fcc076b44e46203e9fc1a50d57bac73a1d8c (patch)
treebe90108b8eb3c255a161ab7b06e4f2d1b79c6a6f /librewolf.install
parentfix appimage build (diff)
downloadlibrewolf-linux-8378fcc076b44e46203e9fc1a50d57bac73a1d8c.tar.gz
librewolf-linux-8378fcc076b44e46203e9fc1a50d57bac73a1d8c.tar.bz2
librewolf-linux-8378fcc076b44e46203e9fc1a50d57bac73a1d8c.zip
Partial rewrite of build process
Switching to an Arch based build process for easier maintenance and using specific runners for tasks where that might be necessary. Right now, parent/child pipelines for somewhat parallel builds for different architectures / semi-independent pak-builds don't seem to properly work yet due to `trigger:` not being recognized when it should, so that's not yet implemented.
Diffstat (limited to 'librewolf.install')
-rw-r--r--librewolf.install13
1 files changed, 13 insertions, 0 deletions
diff --git a/librewolf.install b/librewolf.install
new file mode 100644
index 0000000..9acf7a4
--- /dev/null
+++ b/librewolf.install
@@ -0,0 +1,13 @@
+post_install() {
+ echo ">> If you want to reduce potential privacy leaks even further, you should consider"
+ echo ">> clearing a few settings required for updating/searching extensions:"
+ echo ">> extensions.getAddons.get.url"
+ echo ">> extensions.getAddons.langpacks.url"
+ echo ">> extensions.getAddons.link.url"
+ echo ">> extensions.getAddons.search.browseURL"
+ echo ">> extensions.update.url"
+ echo ">> extensions.update.background.url"
+ echo ">> If you do wish to install extensions the 'regular way',"
+ echo ">> a few more tweaks might be needed."
+ echo ">> I've kept the relevant settings unlocked for that specific reason."
+}
bgstack15