Maximilian Bosch dee2dab7c6
ibus-engines.typing-booster: init at 2.1.1
This package providesa completion input method for faster typing.
See https://mike-fabian.github.io/ibus-typing-booster

Detailed instructions how to activate this IBus engine on your desktop
can be found in the upstream docs: https://mike-fabian.github.io/ibus-typing-booster/documentation.html

A simple VM with the Gnome3 desktop and activated `ibus' looks like
this:

```nix
{
  emojipicker = { pkgs, ... }: {
    services.xserver = {
      enable = true;
      desktopManager.gnome3.enable = true;
      desktopManager.xterm.enable = false;
    };
    users.extraUsers.vm = {
      password = "vm";
      isNormalUser = true;
    };
    i18n.inputMethod.ibus.engines = [
      pkgs.ibus-engines.typing-booster
    ];
    i18n.inputMethod.enabled = "ibus";
    virtualisation.memorySize = 2048;
  };
}
```

Fixes #38721
2018-09-19 21:27:10 +02:00
..
2018-03-26 21:44:24 -04:00
2018-05-31 21:03:37 -04:00
2018-05-01 19:54:21 -04:00
2018-09-03 17:13:46 +02:00
2018-05-01 19:54:21 -04:00
2018-05-31 21:03:37 -04:00
2018-05-01 19:54:21 -04:00
2018-08-27 19:54:41 -04:00
2018-03-25 19:52:07 -04:00
2018-04-05 07:54:01 -04:00
2018-09-01 15:06:38 -04:00