From f0e4b7f74bd2069ed8739319b588fbd6dfa91cbb Mon Sep 17 00:00:00 2001 From: TLZ Date: Mon, 23 May 2022 16:03:32 +0200 Subject: [PATCH] Add nb and bindle (#59) --- programs/bindle.json | 20 ++++++++++++++++++++ programs/nb.json | 15 +++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 programs/bindle.json create mode 100644 programs/nb.json diff --git a/programs/bindle.json b/programs/bindle.json new file mode 100644 index 0000000..11df9b9 --- /dev/null +++ b/programs/bindle.json @@ -0,0 +1,20 @@ +{ + "files": [ + { + "path": "$HOME/.bindle", + "movable": true, + "help": "Export the following environment variables:\n\n```bash\nexport BINDLEPATH=\"$XDG_DATA_HOME/bindle\"\n```\n" + }, + { + "path": "$HOME/.bindlerc", + "movable": true, + "help": "Export the following environment variables:\n\n```bash\nexport BINDLERC=\"$XDG_CONFIG_HOME/bindlerc\"\n```\n" + }, + { + "path": "$HOME/.dotsrc", + "movable": true, + "help": "Export the following environment variables:\n\n```bash\nexport BINDLERC=\"$XDG_CONFIG_HOME/dotsrc\"\n```\n" + } + ], + "name": "bindle" +} diff --git a/programs/nb.json b/programs/nb.json new file mode 100644 index 0000000..198519b --- /dev/null +++ b/programs/nb.json @@ -0,0 +1,15 @@ +{ + "files": [ + { + "path": "$HOME/.nb", + "movable": true, + "help": "Export the following environment variables:\n\n```bash\nexport NB_DIR=\"$XDG_DATA_HOME/nb\"\n```\n" + }, + { + "path": "$HOME/.nbrc", + "movable": true, + "help": "Export the following environment variables:\n\n```bash\nexport NBRC_PATH=\"$XDG_CONFIG_HOME/nbrc\"\n```\n" + } + ], + "name": "nb" +} -- 2.47.3