From 0b65cf35310c0dd4bdf42ba88989ea59ac29f5e3 Mon Sep 17 00:00:00 2001 From: Daniel Brahneborg Date: Fri, 4 Apr 2025 07:58:17 +0200 Subject: [PATCH] Update README.md plugin/Readme: the plugin can be named something different than the file it's in --- plugins/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/README.md b/plugins/README.md index e80b5d7..47881bd 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -5,17 +5,17 @@ This directory contains various plugins for EMG. ## Usage For most plugins, the configuration is simple. -Let's say the plugin *something* is in the file `something.pl`. +Let's say the plugin *some_plugin* is in the file `some_file.pl`. You will then create a section in your `server.cfg` file, like this: - PLUGIN something < - LIBRARY=something.pl + PLUGIN some_plugin < + LIBRARY=some_file.pl > For the connectors that should use it, reference it like this: CONNECTOR some_connector < - PLUGIN=something + PLUGIN=some_plugin ... >