From 05d315aed30a463332234f895e607a7c68c10495 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 21 Oct 2023 22:28:36 +0200 Subject: fix(hm/conf/firefox/scr/extensions): Add required 'default_area' --- hm/soispha/conf/firefox/scripts/update_extensions | 28 +++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'hm') 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 -- cgit 1.4.1