blob: c820dd7ff22c575c0225d7418d8bc06a2f0937bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/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
torproject-snowflake
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";
|