aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-21 22:28:36 +0200
committerSoispha <soispha@vhack.eu>2023-10-21 22:28:36 +0200
commit05d315aed30a463332234f895e607a7c68c10495 (patch)
treedf196ea4d7d8a9e6e61a399d2f8b736a063579fb
parentbuild(treewide): Update (diff)
downloadnixos-config-05d315aed30a463332234f895e607a7c68c10495.zip
fix(hm/conf/firefox/scr/extensions): Add required 'default_area'
-rwxr-xr-xhm/soispha/conf/firefox/scripts/update_extensions28
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