From: Lorenzo Alluminio <31852651+LorenzoAlluminio@users.noreply.github.com> Date: Sat, 27 Aug 2022 11:41:39 +0000 (+0200) Subject: add support for alacritty, nodenv and metasploit (#173) X-Git-Tag: v0.2.0.2~146 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/xdg-ninja.git/commitdiff_plain/b8d56ba34f88bcfc37c0e0ae71a338fe18198759?ds=sidebyside add support for alacritty, nodenv and metasploit (#173) * add nodenv * add alacritty * add metasploit --- diff --git a/programs/alacritty.json b/programs/alacritty.json new file mode 100644 index 0000000..063ffdf --- /dev/null +++ b/programs/alacritty.json @@ -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 index 0000000..0ffc5bf --- /dev/null +++ b/programs/metasploit.json @@ -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 index 0000000..6bf1c9f --- /dev/null +++ b/programs/nodenv.json @@ -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" +}