Skip to content

Commit c1c743f

Browse files
committed
readme: add tips for Linux users
Signed-off-by: leo <[email protected]>
1 parent 1e148c0 commit c1c743f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ For **Linux** users:
101101
* `xdg-open` must be installed to support open native file manager.
102102
* Make sure [git-credential-manager](https://github.com/git-ecosystem/git-credential-manager/releases) is installed on your linux.
103103
* Maybe you need to set environment variable `AVALONIA_SCREEN_SCALE_FACTORS`. See https://github.com/AvaloniaUI/Avalonia/wiki/Configuring-X11-per-monitor-DPI.
104+
* If you can NOT type accented characters, such as `ê`, `ó`, try to set the environment variable `AVALONIA_IM_MODULE` to `none`.
104105

105106
## OpenAI
106107

src/Native/Linux.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal class Linux : OS.IBackend
1313
{
1414
public void SetupApp(AppBuilder builder)
1515
{
16-
builder.With(new X11PlatformOptions());
16+
builder.With(new X11PlatformOptions() { EnableIme = true });
1717
}
1818

1919
public string FindGitExecutable()

0 commit comments

Comments
 (0)