EmojiMart

Emojimart

๐Ÿช Modern emoji picker popup for desktop, based on Emoji Mart, built with Tauri and Svelte

Emoji Mart desktop popup

Modern emoji picker popup for desktop, based on the amazing Emoji Mart web component, built with Tauri and Svelte.

  • ๐Ÿพ Built as a popup: quick invocation through your system custom shortcuts, and disappears when not needed, does not stay as a standalone window, does not run in the background
  • ๐Ÿ”Ž Search text box automatically focused and ready to type when invoked
  • โŒจ๏ธ Use the keyboard to navigate and select emojis
  • โœ’๏ธ On x11 the selected emoji is automatically pasted to your currently focused app
  • ๐ŸŒ Complete translation in 22 languages, it will use your system language automatically
  • ๐Ÿง  Remembers your frequently used emojis
  • โš”๏ธ Cross-platform, it can be installed natively on Linux, MacOS, or Windows (although only tested on Linux at the moment)
  • ๐Ÿง‘โ€๐Ÿš€ Built with Tauri, TypeScript, and Svelte

Please report any weird behavior in the GitHub issues! And feel free to contribute, the codebase is quite small and understandable.

๐Ÿ“ฅ๏ธ Installation

๐Ÿง Linux

Download on Flathub

or

flatpak install io.github.vemonet.EmojiMart

โŒจ๏ธ The easiest way to use Emoji Mart is to invoke it with a custom system keyboard shortcut, create one to register the command that starts the emoji picker:

flatpak run io.github.vemonet.EmojiMart
๐Ÿ‘ฃ More info on defining shortcuts in GNOME Shell here

Go to Settings > Keyboard > View and Customize Shortcuts > Custom Shortcuts

Or you can do it from the terminal, but you will need to adapt it if you already have existing custom shortcuts registered

# Check existing shortcuts list:
gsettings get org.gnome.settings-daemon.plugins.media-keys custom-keybindings

# Create shortcut 0 triggered with Super+E
gsettings set org.gnome.settings-daemon.plugins.media-keys custom-keybindings "['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/]"
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ name 'Emoji Mart'
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ command 'flatpak run io.github.vemonet.EmojiMart'
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ binding '<Super>e'

๐ŸŒ“ Emoji Mart will try to use your system theme, but you can also set a specific theme using the --theme argument when starting the app, possible values are dark, light, and auto:

flatpak run io.github.vemonet.EmojiMart --theme light

๐ŸŒ Emoji Mart will try to use your system language, but you can also set a specific language using the --lang argument when starting the app:

flatpak run io.github.vemonet.EmojiMart --lang fr

โ™ป๏ธ If you want to only rely on auto-paste and keep what is in your clipboard use the --keep argument:

flatpak run io.github.vemonet.EmojiMart --keep

๐Ÿ‘ฃ If you are using Wayland on GNOME we recommend to enable new windows to be centered, otherwise the popup will appear on the top left corner. If you are using Mutter, the default window composer for GNOME, you can do so by running the following command:

gsettings set org.gnome.mutter center-new-windows true

[!CAUTION]

Tauri v2 crashes when used with flatpak on Wayland (as usual Wayland breaks everything). So you will need to use the .appimage or the flatpak v0.2.4

Alternatively, you can use the .AppImage file

This is not recommended, as the app takes slightly longer to startup than with flatpak, and not all dependencies are included to auto-paste.

Run this command to download the .AppImage, and create a desktop file for it:

curl -Ls https://raw.github.com/vemonet/EmojiMart/main/install.sh | bash

Or manually download the .AppImage file from the latest release, and install it.

If you are using x11 you will need to make sure xdotool is installed on the system, e.g. for fedora:

sudo dnf install libxdo-devel

๐ŸŽ MacOS

Download the .dmg for the latest release, and install it.

Then create a custom shortcut for the command: flatpak run io.github.vemonet.EmojiMart to invoke it quickly.

๐ŸชŸ Windows

Download the .exe for the latest release, and install it.

Then create a custom shortcut for the command: flatpak run io.github.vemonet.EmojiMart to invoke it quickly.

๐Ÿ“‹๏ธ Notes

The app currently does not run in the background. It could be invoked slightly faster with a built-in shortcut, and running in the background, but that increases the chances of people starting many phantom processes without knowing. Alternatively when installed with flatpak starting it without letting it run in the background is fast enough for using it like this directly, and does not have any issue with focusing.

Letting the user register custom system shortcuts, instead of having the app registering the shortcut for the user, prevents bugs and conflicts with other shortcuts. Which enable the users to choose from a larger amount of shortcuts.

Inspired by:

Icon credits: duniaonme653898 on Vecteezy

โ˜‘๏ธ Todo

๐Ÿ› ๏ธ Development

Built with Tauri, Svelte, TypeScript, and Vite.

Recommended IDE Setup: VS Code + Tauri + rust-analyzer

Requirements: yarn v1 (v3 is not supported by flatpak to generate npm sources)

See pre-requesites to run tauri: https://tauri.app/v1/guides/getting-started/prerequisites

๐Ÿงถ Install

Additional dependencies for Linux to enable auto-paste on x11:

# On debian/ubuntu
sudo apt install -y libx11-dev libxdo-dev build-essential libwebkit2gtk-4.1-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
# On fedora
sudo dnf install -y libX11-devel libxdo-devel

Install dependencies:

make install

If you are developing on Wayland you will need to install extra dependencies (e.g. ydotool to auto-paste):

make install-wayland

๐Ÿ›ฉ๏ธ Run

In development mode, with automatic reload when the code changes:

make dev

To see logs and debug: right click on the app window, and select Inspect Element

๐Ÿ“ฆ๏ธ Build

To build the Flatpak package checkout this repository: flathub/io.github.vemonet.EmojiMart

Build .AppImage and .deb packages, or .dmg/.exe depending on your OS:

make build

On Linux, you can install the previously built EmojiMart.AppImage as desktop app:

make desktop-local

โœ… Format

Run automatic formatting and linting of the codebase:

make fmt

โซ Upgrade dependencies

You might want to upgrade the latest versions of:

To automatically upgrade dependencies with yarn and cargo you can run:

make upgrade
yarn upgrade-interactive --latest

๐Ÿท๏ธ New release

To publish a new release, follow this process:

  1. Changed the version in: package.json, src-tauri/Cargo.toml and src-tauri/tauri.conf.json, you can use this script to do it automatically for a specific new version:

    make bump version=0.1.2
    
  2. Merge the main branch to the release branch, and push the release branch to GitHub:

    make release
    
  3. A GitHub Action workflow will automatically build the artefacts for the different platforms, and create a new release on GitHub.

  4. Finally send a pull request to update the tag in the flathub repository to trigger a new release on flathub.

๐Ÿ–ผ๏ธ Change icon

Put the new icon file named app-icon.png (ideally size 512 or 1024) at the root of the repo, and run (for more details see the official docs):

make icon

Top categories

Loading Svelte Themes