blob: 05f47aade98c634c9b03c44d5899c8a91d90ca4d (
plain) (
tree)
|
|
#!/bin/sh
# shellcheck disable=SC2086
# shellcheck source=/dev/null
#. ~/.local/lib/shell/lib
tmp=$(mktemp)
cat << EOF > $tmp
darkreader
keepassxc-browser
simple-tab-groups
ublock-origin
tridactyl-vim
video-pauser
libredirect
EOF
# The bin is provided in the devshell. The cat execution should be unquoted
generate_extensions $(cat "$tmp") > "$(dirname $0)"/../config/extensions/extensions.json
rm "$tmp";
|