diff --git a/README.md b/README.md index 4a68bb1..00c4b35 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Use `http://localhost:8080/` to access it locally, do not expose this to the web - [Ports](#ports) - [Mapped Volumes](#mapped-volumes) - [Environment Variables](#environment-variables) + - [Language Support](#language-support) - [Using Docker Compose](#using-docker-compose) - [Enabling GIT for the obsidian-git plugin](#enabling-git-for-the-obsidian-git-plugin) - [Docker CLI example](#docker-cli-example) @@ -77,6 +78,7 @@ docker run -d ` | PGID | Set the group ID for the continer user. `911` by default. | | TZ | Set the Time Zone for the container, should match your TZ. `Etc/UTC` by default. See [List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) for valid options. | | DOCKER_MODS | Use to add mods to the container like git. E.g. `DOCKER_MODS=linuxserver/mods:universal-git` See [Docker Mods](https://github.com/linuxserver/docker-mods) for details. | +| INSTALL_PACKAGES | Use to add package for the container like language pack. E.g. `INSTALL_PACKAGES=fonts-noto-cjk fonts-noto-extra` And the docker mod `linuxserver/mods:universal-package-install` is required. | | KEYBOARD | Used to se the keyboard being used for input. E.g. `KEYBOARD=en-us-qwerty` or `KEYBOARD=de-de-qwertz` a list of other possible values (not tested) can be found at | | CUSTOM_PORT | Internal port the container listens on for http if it needs to be swapped from the default 3000. | | CUSTOM_HTTPS_PORT | Internal port the container listens on for https if it needs to be swapped from the default 3001. | @@ -86,6 +88,14 @@ docker run -d ` | TITLE | The page title displayed on the web browser, default "KasmVNC Client". | | FM_HOME | This is the home directory (landing) for the file manager, default "/config". | +### Language Support + +To show the other languages, add the mod `linuxserver/mods:universal-package-install` and add the language pack. E.g. `INSTALL_PACKAGES=fonts-noto-cjk fonts-noto-extra` to support CJK (Chinese Japanese Korean). + +To type other language in the browser you should enable the **IME Input Mode** in the side panel. + +![Settings IME Input Mode](./assets/IMEInputMode.png) + ## Using Docker Compose ```YAML diff --git a/assets/IMEInputMode.png b/assets/IMEInputMode.png new file mode 100644 index 0000000..9b7dc60 Binary files /dev/null and b/assets/IMEInputMode.png differ