From b8d56ba34f88bcfc37c0e0ae71a338fe18198759 Mon Sep 17 00:00:00 2001 From: Lorenzo Alluminio <31852651+LorenzoAlluminio@users.noreply.github.com> Date: Sat, 27 Aug 2022 13:41:39 +0200 Subject: [PATCH] add support for alacritty, nodenv and metasploit (#173) * add nodenv * add alacritty * add metasploit --- programs/alacritty.json | 10 ++++++++++ programs/metasploit.json | 10 ++++++++++ programs/nodenv.json | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 programs/alacritty.json create mode 100644 programs/metasploit.json create mode 100644 programs/nodenv.json 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" +} -- 2.47.3