blob: 33a6c88ecaeff89d90f6ad64cddabe20fd86a155 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -eu
cd "$(dirname "$0")"
HOST_DIR="${HOME}/.mozilla/native-messaging-hosts"
mkdir -p "$HOST_DIR"
cat >"$HOST_DIR/accent_color.json" <<JSON
{
"name": "accent_color",
"description": "Accent color provider",
"path": "$(pwd)/accent_host.py",
"type": "stdio",
"allowed_extensions": ["accent-color@example.com"]
}
JSON
chmod +x accent_host.py
|