tridactyl/native/install.sh

39 lines
1.4 KiB
Bash
Raw Normal View History

#!/bin/sh
# To install, curl -fsSl 'url to this script' | sh
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config/tridactyl}"
XDG_DATA_HOME="${XDG_LOCAL_HOME:-$HOME/.local/share/tridactyl}"
manifest_loc="https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/tridactyl.json"
native_loc="https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/native_main.py"
# Decide where to put the manifest based on OS
if [[ "$OSTYPE" == "linux-gnu" ]]; then
manifest_home="$HOME/.mozilla/native-messaging-hosts/"
echo 'Linux system detected'
elif [[ "$OSTYPE" == "darwin"* ]]; then
manifest_home="$HOME/Library/Application Support/Mozilla/NativeMessagingHosts/"
echo 'macOS system detected'
fi
mkdir -p "$manifest_home" "$XDG_DATA_HOME"
manifest_file="$manifest_home/tridactyl.json"
native_file="$XDG_DATA_HOME/native_main.py"
echo "Manifest home: $manifest_home"
echo "XDG_DATA_HOME: $XDG_DATA_HOME"
# Download the files using curl since macOS doesn't ship with wget for
# inexplicable reasons
# Until this PR is merged into master, we'll be copying the local version over
# instead of downloading it
# curl --create-dirs -o $manifest_file $manifest_loc
# curl --create-dirs -o $native_file $native_loc
cp -f tridactyl.json "$manifest_file"
cp -f native_main.py "$native_file"
native_file_escaped=$(sed 's/[&/\]/\\&/g' <<< "$native_file")
sed -i.bak "s/REPLACE_ME_WITH_SED/$native_file_escaped/" "$manifest_file"
chmod +x $native_file