diff options
author | Soispha <soispha@vhack.eu> | 2023-10-21 22:28:36 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-21 22:28:36 +0200 |
commit | 05d315aed30a463332234f895e607a7c68c10495 (patch) | |
tree | df196ea4d7d8a9e6e61a399d2f8b736a063579fb | |
parent | build(treewide): Update (diff) | |
download | nixos-config-05d315aed30a463332234f895e607a7c68c10495.tar.gz nixos-config-05d315aed30a463332234f895e607a7c68c10495.zip |
fix(hm/conf/firefox/scr/extensions): Add required 'default_area'
Diffstat (limited to '')
-rwxr-xr-x | hm/soispha/conf/firefox/scripts/update_extensions | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/hm/soispha/conf/firefox/scripts/update_extensions b/hm/soispha/conf/firefox/scripts/update_extensions index c820dd7f..8052e000 100755 --- a/hm/soispha/conf/firefox/scripts/update_extensions +++ b/hm/soispha/conf/firefox/scripts/update_extensions @@ -1,22 +1,22 @@ #!/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 +cat << EOF > "$tmp" + darkreader:navbar + keepassxc-browser:menupanel + simple-tab-groups:menupanel + ublock-origin:menupanel + tridactyl-vim:menupanel + video-pauser:menupanel + libredirect:menupanel + torproject-snowflake:menupanel EOF -# The bin is provided in the devshell. The cat execution should be unquoted -generate_extensions $(cat "$tmp") > "$(dirname $0)"/../config/extensions/extensions.json +# 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 |