about summary refs log tree commit diff stats
path: root/hm/soispha/conf/firefox/scripts/update_extensions.sh
blob: f8ed3a9a2ffc98d94bdbb3afd8fc31e99d256954 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh


tmp=$(mktemp)
cat << EOF > "$tmp"
    darkreader:navbar
    keepassxc-browser:navbar
    vhack-libredirect:navbar
    torproject-snowflake:navbar
    tridactyl-vim:menupanel
    ublock-origin:menupanel
    video-pause:menupanel
EOF

# The bin is provided in the devshell;
# The cat execution should be unquoted;
# shellcheck disable=SC2046
generate_extensions $(cat "$tmp") > "$(dirname "$0")"/../config/extensions/extensions.json



rm "$tmp";