about summary refs log blame commit diff stats
path: root/home-manager/config/firefox/scripts/update_extensions
blob: 05f47aade98c634c9b03c44d5899c8a91d90ca4d (plain) (tree)
1
2
3
4
5
6
7
8

                             
                         
 
             
                 

                     
                 
                
               
   
                                                                                        

 
          
#!/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";