about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/firefox/scripts/update_extensions
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-26 23:42:21 +0200
committerSoispha <soispha@vhack.eu>2023-08-26 23:42:21 +0200
commit3f600ab07dbad3b6dd7655587ddea158b19aea71 (patch)
tree7164ccd965e1d14ade970aeb8eb188b1442a6c91 /home-manager/soispha/config/firefox/scripts/update_extensions
parentStyle(treewide): Format all lua-files makes lua ➛ nix easier (diff)
downloadnixos-config-3f600ab07dbad3b6dd7655587ddea158b19aea71.zip
Refactor(treewide): Abbreviate path names
Diffstat (limited to 'home-manager/soispha/config/firefox/scripts/update_extensions')
-rwxr-xr-xhome-manager/soispha/config/firefox/scripts/update_extensions22
1 files changed, 0 insertions, 22 deletions
diff --git a/home-manager/soispha/config/firefox/scripts/update_extensions b/home-manager/soispha/config/firefox/scripts/update_extensions
deleted file mode 100755
index 05f47aad..00000000
--- a/home-manager/soispha/config/firefox/scripts/update_extensions
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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";