From 98221b559e7384128b76b341b01d473cae433191 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 16 May 2024 10:02:40 -0400 Subject: [PATCH] Begin setting up module system --- .gitignore | 6 +++++- modules/README.md | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 modules/README.md diff --git a/.gitignore b/.gitignore index d5bb85d..603393e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ /secrets /configs/remmina __pycache__ -.nvimlog \ No newline at end of file +.nvimlog + +# ewconfig modules +/modules/* +!/modules/README.md \ No newline at end of file diff --git a/modules/README.md b/modules/README.md new file mode 100644 index 0000000..7ffe330 --- /dev/null +++ b/modules/README.md @@ -0,0 +1,5 @@ +# `ewconfig` modules + +This directory can be filled with context-specific modules. Each module may contain a `install.sh` file that can be used to run arbitrary installation commands. + +If any module contains a `bin` directory, it will be added to the system's `$PATH`.