Add LibreWolf snap helper setup

This commit is contained in:
Emil Hemdal 2025-03-10 08:53:26 +01:00 committed by Jonathan White
parent 33a3796074
commit 31c0b23890

View File

@ -94,6 +94,11 @@ setupEdge() {
INSTALL_DIR="${BASE_DIR}/.config/microsoft-edge/NativeMessagingHosts" INSTALL_DIR="${BASE_DIR}/.config/microsoft-edge/NativeMessagingHosts"
} }
setupLibreWolf() {
JSON_OUT=${JSON_FIREFOX}
INSTALL_DIR="${BASE_DIR}/.librewolf/native-messaging-hosts"
}
# -------------------------------- # --------------------------------
# Start of script # Start of script
# -------------------------------- # --------------------------------
@ -109,6 +114,7 @@ BROWSER=$(whiptail \
"5" "Brave" \ "5" "Brave" \
"6" "Tor Browser" \ "6" "Tor Browser" \
"7" "Microsoft Edge" \ "7" "Microsoft Edge" \
"8" "LibreWolf" \
3>&1 1>&2 2>&3) 3>&1 1>&2 2>&3)
exitstatus=$? exitstatus=$?
@ -125,6 +131,7 @@ if [[ $exitstatus == 0 ]]; then
5) setupBrave ;; 5) setupBrave ;;
6) setupTorBrowser ;; 6) setupTorBrowser ;;
7) setupEdge ;; 7) setupEdge ;;
8) setupLibreWolf ;;
esac esac
# Install the JSON file # Install the JSON file