]> glassweightruler.freedombox.rocks Git - xdg-ninja.git/commitdiff
add support for alacritty, nodenv and metasploit (#173)
authorLorenzo Alluminio <31852651+LorenzoAlluminio@users.noreply.github.com>
Sat, 27 Aug 2022 11:41:39 +0000 (13:41 +0200)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 11:41:39 +0000 (13:41 +0200)
* add nodenv

* add alacritty

* add metasploit

programs/alacritty.json [new file with mode: 0644]
programs/metasploit.json [new file with mode: 0644]
programs/nodenv.json [new file with mode: 0644]

diff --git a/programs/alacritty.json b/programs/alacritty.json
new file mode 100644 (file)
index 0000000..063ffdf
--- /dev/null
@@ -0,0 +1,10 @@
+{
+    "files": [
+        {
+            "path": "$HOME/.alacritty.yml",
+            "movable": true,
+            "help": "Supported out of the box, just move the file to:\n\n```bash\n$XDG_CONFIG_HOME/alacritty/alacritty.yml \n```\n"
+        }
+    ],
+    "name": "alacritty"
+}
diff --git a/programs/metasploit.json b/programs/metasploit.json
new file mode 100644 (file)
index 0000000..0ffc5bf
--- /dev/null
@@ -0,0 +1,10 @@
+{
+    "files": [
+        {
+            "path": "$HOME/.msf4",
+            "movable": false,
+            "help": "Currently not supported, see [this](https://github.com/rapid7/metasploit-framework/issues/11367) issue.\n"
+        }
+    ],
+    "name": "metasploit"
+}
diff --git a/programs/nodenv.json b/programs/nodenv.json
new file mode 100644 (file)
index 0000000..6bf1c9f
--- /dev/null
@@ -0,0 +1,10 @@
+{
+    "files": [
+        {
+            "path": "$HOME/.nodenv",
+            "movable": true,
+            "help": "Export the following environment variables:\n\n```bash\nexport NODENV_ROOT=\"$XDG_DATA_HOME\"/nodenv \n```\n"
+        }
+    ],
+    "name": "nodenv"
+}