readme: add tips for Linux users

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2024-11-22 09:17:56 +08:00
parent 1e148c032d
commit c1c743f2ff
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

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

View file

@ -13,7 +13,7 @@ namespace SourceGit.Native
{
public void SetupApp(AppBuilder builder)
{
builder.With(new X11PlatformOptions());
builder.With(new X11PlatformOptions() { EnableIme = true });
}
public string FindGitExecutable()