- Notifications
You must be signed in to change notification settings - Fork49
Emoji, unicode and general character picker for rofi and rofi-likes
License
fdw/rofimoji
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Do you want to use one of those fancy emojis? Or one of those other interesting characters Unicode offers? But you haven't found a good picker yet?
Fear no more,rofimoji
invokes the power ofrofi (andother dmenu-derivatives) to give you exactly the picker you always wanted.
- Insert the select character directly, or copy it to the clipboard.
- Characters (and especially emojis) are fuzzy-searchable with keywords.
- It remembers the ones you use most and presents them first.
- Emojis by default, but you can have any Unicode block you want - you can evenuse your own!
With agrid theme
Callrofimoji
as a standalone tool.
- Run
rofimoji
- Search for the character you want
- (optional) Select multiple emoji with
shift+enter
- Hit
enter
to for the default action or use one of theshortcuts to do something else.alt+1
directly chooses the most most recently used character (alt+2
for the second most recently one etc.) - Maybe select a skin color
- 🦾
Integraterofimoji
as just another rofi mode.
- Call rofi with
rofi -modi "emoji:rofimoji" -show emoji
- Search for the character you want
- Hit
enter
to execute your default action;Alt+Shift+1
for copying to the clipboardAlt+Shift+3
for the "clipboard" insertion methodalt+1
inserts the most recently used character (alt+2
for the second most recently one etc.) - Maybe select a skin color
- 🐉
There are some limitations to this approach, though:Running as rofi mode has several drawbacks that cannot be changed:
- Because
rofi
is the main process,rofimoji
cannot directly type to any window. Only copying the character works, so set the--action
accordingly. - You can only select one character at a time.
- The custom keyboard shortcuts are still there, but mapped to
Alt+Shift+1
(on a Qwerty keyboard) etc.
The configuration still works as described. You can have several modes in acombi
for different character sets, for example, or set a default action and skin tone.
You can configurerofimoji
either with cli arguments or with a config file called$XDG_CONFIG_HOME/rofimoji.rc
. For the file, use the long option names without double dashes.
long option | short option | possible values | default value | description |
---|---|---|---|---|
--action | -a | type ,copy ,clipboard ,unicode ,copy-unicode ,print ,menu | type | Choose whatrofimoji should do with the selected characters. SeeActions below for details. |
--files | -f | all ,<yourfile> orany of the files indata | emojis | Define which file(s) to load characters from. A file name without extension (f.e.emojis_smileys_emotion ) is enough for the distributed ones or any in${XDG_DATA_HOME}/rofimoji/data . Globbing with* is possible.all is a shortcut for all default files at once. Use with caution, that is alot. |
--skin-tone | -s | light ,medium-light ,moderate ,dark brown ,black , as well asneutral andask | ask | Define the skin tone of supporting emojis.ask will always ask the user. |
--max-recent | 0-10 | 10 | Show at most this many recently picked characters. The number will be capped at 10. Set to0 to disable the whole feature. | |
--no-frecency ( no-frecency=True in the config file) | - | <false> | By default,rofimoji shows frequently used items first. With this option, they're shown in the order of the file. | |
--hidden-descriptions ( hidden-descriptions=True in the config file) | - | <false> | Only list the characters, but not their description. This is useful forgrid themes inrofi . Note that they're still searchable, even though the description is not shown. Not used with other selectors. | |
--use-icons | false | Show characters as icons inrofi . Not used for other selectors. | ||
--prompt | -r | any string | 😀 | Define the prompt text forrofimoji . |
--selector-args | Define arguments thatrofimoji will pass through to the selector.Please note that you need to specify it as --selector-args="<selector-args>" or--selector-args " <selector-args>" because of abug in argparse | |||
--selector | rofi ,wofi ,fuzzel ,dmenu ,tofi ,bemenu ,wmenu | (automatically chosen) | Show the selection dialog with this application. | |
--clipboarder | xsel ,xclip ,wl-copy | (automatically chosen) | Access the clipboard with this application. | |
--typer | xdotool ,wtype | (automatically chosen) | Type the characters using this application. | |
--keybinding-copy ,--keybinding-type ,--keybinding-clipboard ,--keybinding-unicode ,--keybinding-copy-unicode | Alt+c ,Alt+t ,Alt+p ,Alt+u ,Alt+i | Choose different keybindings than the default values. |
~/.config/rofimoji.rc
:
action = copyfiles = [emojis, math]skin-tone = moderate
The--action
(-a
) option defines what action will be taken when a character is selected. Multiple actions can be specified with a space character in between (for example:-a type copy
).The options are:
name | shortcut | description |
---|---|---|
type | alt+t | Directly type the characters into the last active window. This is thedefault |
copy | alt+c | Copy them to the clipboard. |
clipboard | alt+p | Insert the selected characters through pasting from the clipboard, instead of directly typing them. SeeInsertion Method. |
unicode | alt+u | Type the unicode codepoints of the selected characters. |
copy-unicode | alt+i | Copy the codepoints to clipboard. |
print | Print the chosen characters tostdout . |
By default,rofimoji
types the characters using eitherxdotool
orwtype
(seedisplay server support). You can enforce this behavior with--action type
(-a type
).
For some applications (f.e. Firefox), this does not work reliably. To work around this,rofimoji
can copy the emojis to your clipboard and insert them from there withshift+insert
. Afterwards, it will restore the previous contents.Unfortunately, it depends on the receiving application whethershift+insert
uses the clipboard or the primary selection.Therefore,rofimoji
uses both and also restores both.To use this workaround, you can either use the keybindingalt+p
or start it asrofimoji --action clipboard
(-a clipboard
).If you want to have it directly typed instead, you can hitalt+t
, even though it was started with--action clipboard
. Note that you canchange the keybindings.
Finally, with--action copy
(or-a copy
) you can also tellrofimoji
to only copy the selected characters to your clipboard.
rofimoji
supports both X11 and Wayland by using the correct tools for each environment (seeSupported Selectors). It tries to automatically choose the right one for the currently running session.If you want to manually overwrite this, have a look at the--selector
,--clipboarder
and--typer
optionsabove.
By default,rofimoji
will show the last ten recently used characters separately; you can insert them withalt+1
,alt+2
and so on. It will use the defaultinsertion method.If you don't want this, you can set--max-recent
to0
.
Additionally,rofimoji
also remembers in general which characters are used more frequently and sorts the list accordingly. You can disable this behavior with--no-frecency
.
By default,rofimoji
re-uses the existing rofi configuration, but you can pass your own using--selector-args
(for example--selector-args="-theme ~/your-rofi-theme.rasi"
).
If you would like a more character-focused theme, you can use packagedgrid.rasi
together with the--hidden-descriptions
parameter. This theme still imports the existingrofi
configuration but moves the entries into a grid. Of course, you can base your own theme on this. (If you have improvements, please open a PR!)To use the arrow keys inrofi
only for the grid and not the query, pass these-selector-args
:-kb-row-left Left -kb-row-right Right -kb-move-char-back Control+b -kb-move-char-forward Control+f
.
- Unicode emojis with the official descriptions and tags. Also supports skin tones and gender variants.
- All otherUnicode characters, split into the official blocks
- CJK character sets from Unicode
- Font Awesome 6
- Nerd Fonts
- Gitmoji
- Kaomoji, fromw33ble
- HTML Named Character References
If you miss something, please open an issue!
If the predefined ones are not enough, you can define additional character files and load them with-f
(seeoptions). In each line, one 'character' can be defined, followed by a single space character (). After that, you can write whatever description you want.
If the character is also in another selected file, all descriptions will be combined. If you give it the same name as one of those included withrofimoji
, yours will be preferred.
For added comfort,rofimoji
will automatically load an "additional" file for predefined ones. This file needs to called<filename>.additional.csv
and lie in${XDG_DATA_DIR}/rofimoji/data/
. For example, if you want to extendemojis_smileys_emotion
, call the fileemojis_smileys_emotions.additional.csv
. This is helpful if you want additional descriptions: You can define such an additional character file, add the character and your description and your descriptions will now also be shown.
If you think your file is useful to others, please open a PR to include it in a future version ofrofimoji
.
rofimoji
is onPyPI. You can install it withpipx install rofimoji
(orsudo pipx install rofimoji
).
Download the wheel file of thelatest release and install it withsudo pip install $filename
(or you can usepip install --user $filename
to only install it for the local user).Afterwards, there should be arofimoji
on your$PATH
.This also installs the python dependencyconfigargparse
.
What else do you need:
- Python 3.8 or higher
- A font that can display your scripts, (for emojis,EmojiOne orNoto Emoji work)
- Optionally, a tool to programmatically type characters into applications. Either
xdotool
for X11 orwtype
for Wayland - Optionally, a tool to copy the characters to the clipboard.
xsel
andxclip
work on X11;wl-copy
on Wayland
Please note that several advanced features are only supported byrofi
(both on X and Wayland):
- custom keyboard shortcuts
--use-icons
and--hidden-descriptions
, and thus a grid theme- multiple selections
- recently used characters
All other selectors can be used for the basic functionality.
About
Emoji, unicode and general character picker for rofi and rofi-likes