Modules
Modules extend the functionality provided by e17. The most common type is called Gadgets which are module that can be placed in the shelf or the toolbar of efm. But configuration dialogs are also implemented as modules and can be unloaded if not used. Just go to Mainmenu->Settings->Modules to see the list of currently loaded modules.
Command Line Tool
If you wish to use the command-line enlightenment_remote tool instead of the control panel dialogs, here are the relevant commands:
$ enlightenment_remote --help
OPTIONS:
-module-load OPT1 - Load module OPT1 into memory
-module-unload OPT1 - Unload (and disable) module OPT1 from memory
-module-enable OPT1 - Enable module OPT1 if not enabled
-module-disable OPT1 - Disable module OPT1 if not disabled
-module-list - List all loaded modules and their states
To see what modules are currently loaded, check the main E17 menu or issue the following command:
$ enlightenment_remote -module-list
It will display something like:
REPLY: BEGIN
REPLY: MODULE NAME="ibar" ENABLED=0
REPLY: MODULE NAME="dropshadow" ENABLED=1
REPLY: MODULE NAME="clock" ENABLED=1
REPLY: MODULE NAME="pager" ENABLED=1
Now in order to load,unload,enable, or disable a module, issue one of these commands:
$ enlightenment_remote -module-load modulename
$ enlightenment_remote -module-unload modulename
$ enlightenment_remote -module-enable modulename
$ enlightenment_remote -module-disable modulename
