ibus VS espanso

Compare ibus vs espanso and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
ibus espanso
23 231
831 9,141
1.1% 3.4%
8.9 8.5
10 days ago 2 days ago
C Rust
GNU Lesser General Public License v3.0 only GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

ibus

Posts with mentions or reviews of ibus. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-01.
  • From xz to ibus: more questionable tarballs
    5 projects | news.ycombinator.com | 1 Apr 2024
    1.5.29-rc2 was tagged on 9 Nov 2023 [1] and in did not contain "N_("CJK Unified Ideographs Extension I")," in src/ibusunicodegen.h [2].

    Commit 228f0a77b2047ade54e132bab69c0c03f0f41aae from 28 Feb 2023 introduced this change instead. It's the same person who tagged 1.5.29-rc2 and committed 228f0a77b2047ade54e132bab69c0c03f0f41aae which is typically an indication the maintainer tar'd their checked out git folder and accidentally included changes not get committed.

    [1] https://github.com/ibus/ibus/releases/tag/1.5.29-rc2

    [2] https://github.com/ibus/ibus/blob/0ad8e77bd36545974ad8acd0a5...

    [2] https://github.com/ibus/ibus/commit/228f0a77b2047ade54e132ba...

  • gtk+-2.24.33_2 in transaction breaks installed pkg `ibus-1.5.28_2
    1 project | /r/voidlinux | 30 Jun 2023
    On https://github.com/ibus/ibus we can see gtk+ are probably only need for ibus-setup. I would like help to be sure i not miss any step.
  • The reality of Wayland input methods in 2022 (2022)
    3 projects | news.ycombinator.com | 26 May 2023
    I also know input methods work great in Ubuntu (Gnome Wayland) because Gnome supports ibus.

    But the article is specifically about incompatibility of input methods among different DEs: Gnome, KDE, wlroots-based environments such as Sway and Hyprland.

    After many years, ibus still doesn’t work with wlroots: https://github.com/ibus/ibus/issues/2182

    The list of recommended IMEs on Sway are all WIP: https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway#...

    Most people use fcitx5 with Sway because fcitx5 and Sway both support input method unstable v2. But the article explains that v2 is still not universally supported among wayland DEs, and that’s why it’s problematic.

  • [Steam Gaming] - Player keeps moving in one direction even when direction key not pressed
    1 project | /r/voidlinux | 18 Apr 2023
    Have no idea what the daemon does practically, here is the GitHub page.
  • Fedora Workstation 38 Is Shaping Up To Be Another Fantastic Release
    2 projects | /r/Fedora | 15 Mar 2023
  • Fedora 38 Beta Released
    2 projects | /r/Fedora | 14 Mar 2023
    The F38 beta is currently affected by two (mostly gaming-related) issues that you should be aware of: - https://gitlab.gnome.org/GNOME/mutter/-/issues/2678 -> a lot of SDL-based games have their fullscreen mode broken. The issue is bisected. - https://github.com/ibus/ibus/issues/2480 -> Keyboard input sometimes gets stuck. Issue has already been identified and we're waiting for an ibus release.
  • Missing keyboard events with X11 (inc. Wine) with ibus 1.5.28
    2 projects | /r/linux_gaming | 8 Mar 2023
  • Introducing the common input method
    1 project | /r/linux | 28 Jan 2023
    Also, to add to what u/Pizza-Driver said, it seems that ibus is not yet interoperable with the protocol used by Wayland display servers based on wlroots.
  • What does "Super+." do?
    1 project | /r/gnome | 6 Oct 2022
    I meant ctrl+., but it looks like ibus recently changed their emoji input shortcut back to super+., so the gtk emoji picker should be available via ctrl+. again without requiring changes: https://github.com/ibus/ibus/commit/1520c39d0d6036da725fcecd932883be3f3d3575
  • Disable Super+Period default behavior
    1 project | /r/gnome | 31 Aug 2022
    Looks like it was changed here: https://github.com/ibus/ibus/commit/1520c39d0d6036da725fcecd932883be3f3d3575

espanso

Posts with mentions or reviews of espanso. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-03.
  • You don't have to type faster to type faster
    2 projects | news.ycombinator.com | 3 Apr 2024
    If you want a standalone cross platform text expander I currently enjoy using Espanso[1]

    [1]: https://espanso.org/

  • Espanso: Because Who Actually Likes Typing Out Their Emails?
    1 project | dev.to | 1 Apr 2024
    # espanso match file # For a complete introduction, visit the official docs at: https://espanso.org/docs/ # You can use this file to define the base matches (aka snippets) # that will be available in every application when using espanso. # Matches are substitution rules: when you type the "trigger" string # it gets replaced by the "replace" string. matches: # signatures - trigger: ";n" replace: "Nikola" - trigger: ";b" replace: "Brežnjak" - trigger: ";li" replace: "https://www.linkedin.com/in/nikola-bre%C5%BEnjak-892b9a24/" - trigger: ";sn" replace: "Kind regards,\nNikola Brežnjak\nhttp://www.nikola-breznjak.com/blog" - trigger: ";web" replace: "http://www.nikola-breznjak.com/" - trigger: ";em" replace: "[email protected]" ## git - trigger: ";ga" replace: "git add ." - trigger: ";gb" replace: "git branch" - trigger: ";gc" replace: "git commit -m " - trigger: ";gd" replace: "git diff --color " - trigger: ";gf" replace: "git fetch --all" - trigger: ";gi" replace: "find . -name '.DS_Store' -type f -delete" - trigger: ";gl" replace: "git log" - trigger: ";gp" replace: "git push origin main" - trigger: ";gs" replace: "git status" - trigger: ";gt" replace: "git remote -v" - trigger: ";gu" replace: "git pull origin main" ## blog - trigger: ";bimp" replace: "https://nikola-breznjak.com/blog/books/want-improve-read-books/" - trigger: ";brem" replace: "https://nikola-breznjak.com/blog/miscellaneou/make-remote-developer/" ## emojis - trigger: ";eew" replace: "⚠️" - trigger: ";eet" replace: "🤔" - trigger: ";eeb" replace: "💰" - trigger: ";eem" replace: "💪" - trigger: ";eetm" replace: "™" - trigger: ";eeh" replace: "❤️" - trigger: ";eeu" replace: "👍" - trigger: ";eep" replace: "🙏" - trigger: ";eef" replace: "🤦" - trigger: ";ees" replace: "🙂" - trigger: ";eeg" replace: "😎" - trigger: ";eev" replace: "👋" - trigger: ";eel" replace: "😂" - trigger: ";eec" replace: "👏" - trigger: ";eeo" replace: "✅" - trigger: ";eer" replace: "🚀" - trigger: ";eex" replace: "⏭️" ## replies - trigger: ";ryw" replace: "You’re welcome 👍" - trigger: ";rlmk" replace: "Please let me know 👍" - trigger: ";rbtw" replace: "Btw, how are things on your end?" - trigger: ";rt" replace: "Thank you! 👍" ## misc - trigger: ";fd" replace: "firebase deploy" - trigger: ";wed" replace: "Happy Wednesday (a dy on which, historically, most people wed on - thus: Wed nes day). Not really, but it would be a fun fact actually 🙂" - trigger: ";cl" replace: "console.log(" - trigger: ";se" replace: "select * from " - trigger: ";o" replace: "open ." - trigger: ";im" replace: "![]({{clipb}})" vars: - name: "clipb" type: "clipboard" - trigger: ";ch" replace: "chrome://history" - trigger: ";;c" replace: "code ."
  • Polish characters and formatting issues on MacOS
    1 project | /r/espanso | 8 Dec 2023
  • Is there global autocorrect for linux?
    4 projects | /r/linuxquestions | 7 Dec 2023
  • Add-on that makes it possible to paste one sentence?
    1 project | /r/firefox | 5 Dec 2023
    This should work for you. Free, cross-platform and works everywhere not just the browser. https://espanso.org/
  • Espanso: Open-source, privacy-first, cross-platform and extensible text expander
    1 project | news.ycombinator.com | 12 Oct 2023
  • Bad Emacs Defaults
    4 projects | news.ycombinator.com | 11 Oct 2023
    Huh, didn't know abbrev had that limitation (wonder why?). Gave it a go in espanso (https://espanso.org/), and it does work there.
  • Show HN: I automated 1/2 of my typing
    11 projects | news.ycombinator.com | 30 Aug 2023
    I use a tool called "Espanso" to accomplish something similar at work. It only runs locally, so no weird data scraping issues to worry about. And it's easy to update as things changes becauase everything lives in a simple yml file.

    https://espanso.org/

    It can do simple text replacement, so I have words, phrases, and sentences I use frequently compressed into a few keyboard clicks. It can also grab what is in your clipboard, so that can be incorporated into responses, which is simple but very handy.

    A simple text replacement looks like this in the yaml file:

  • Cannot get espanso to work on Debian 12 (stable)
    1 project | /r/espanso | 27 Aug 2023
  • [DEV] Open source text expander - Bugs fixed, new updates, now available on IzzyOnDroid - might be worth trying again :D
    1 project | /r/androidapps | 13 Jul 2023
    If you don't know what a text expander is, see: https://espanso.org

What are some alternatives?

When comparing ibus and espanso you can also consider the following projects:

fcitx - A Flexible Input Method Framework

AutoHotkey - AutoHotkey - macro-creation and automation-oriented scripting utility for Windows.

fcitx5 - maybe a new fcitx.

AutoKey - AutoKey, a desktop automation utility for Linux and X11.

rofimoji - Emoji, unicode and general character picker for rofi and rofi-likes

sway - i3-compatible Wayland compositor

svntogit-packages - Automatic import of svn 'packages' repo (read-only mirror)

yabai - A tiling window manager for macOS based on binary space partitioning

obsidian-text-expander - Text Expander plugin for Obsidian

void-packages - The Void source packages collection

vim-clutch - A hardware pedal for improved text editing in Vim