From 21ca6c50d32d9dfe3dbb6366f823fb640d32fad2 Mon Sep 17 00:00:00 2001 From: BeatLink Date: Fri, 16 Aug 2019 19:54:02 -0500 Subject: [PATCH] move toggle settings folder to linux script --- .../linux/binary_tarball/toggle-settings.sh | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 browser/linux/binary_tarball/toggle-settings.sh diff --git a/browser/linux/binary_tarball/toggle-settings.sh b/browser/linux/binary_tarball/toggle-settings.sh new file mode 100644 index 0000000..ff46bde --- /dev/null +++ b/browser/linux/binary_tarball/toggle-settings.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +# Exit script with a non-zero exit code if: +# - any command fails (-e | --errexit) +# - any variable is unset (-u | --nounset) +# - a part of a piped sequence fails (-o pipefail) +set -euo pipefail + +SCRIPT_FOLDER=$(realpath $(dirname $0)); + +# Enable settings ------------------------------------------------------------------------------------------ +if [[ "${1}" = "--enable" ]]; then + mv "${SCRIPT_FOLDER}/[DISABLED] local-settings.js" "${SCRIPT_FOLDER}/local-settings.js"; + mv "${SCRIPT_FOLDER}/[DISABLED] policies.json" "${SCRIPT_FOLDER}/policies.json"; + mv "${SCRIPT_FOLDER}/[DISABLED] librewolf.cfg" "${SCRIPT_FOLDER}/librewolf.cfg"; +# Disable settings ------------------------------------------------------------------------------------------ +elif [[ "${1}" = "--disable" ]]; then + mv "${SCRIPT_FOLDER}/local-settings.js" "${SCRIPT_FOLDER}/[DISABLED] local-settings.js"; + mv "${SCRIPT_FOLDER}/policies.json" "${SCRIPT_FOLDER}/[DISABLED] policies.json"; + mv "${SCRIPT_FOLDER}/librewolf.cfg" "${SCRIPT_FOLDER}/[DISABLED] librewolf.cfg"; +fi