export-notification-theme
Exports the content of a notification theme in a zip file. The base directory in the zip file corresponds to the notification theme id. This id is used when the theme is imported after being modified.
Syntax:
shell
sfiler-cli [options] export-notification-theme [command options]
Command options | Required / Optional | Description |
---|---|---|
-th | Required | The name of the theme to be exported. |
-od | Optional | The output directory where the generated file will be saved. If not provided, the file will be saved in the current folder. |
Example:
shell
./sfiler-config-cli.sh -l my-user -p my-password -cf "conf/sfiler.conf" export-notification-theme -th "notification" -od "/tmp/theme"
This command will export the “notification” notification theme as a zip file in the /tmp/theme
directory.
It will be possible to make modifications directly in the file structure and then re-import this theme later using the import-notification-theme
command, taking care to specify the -th
parameter to indicate the theme to be re-imported.