Closed PaulCombal closed 4 years ago
I was looking for a newer replacement to this https://github.com/edam/emoji-keyboard, but jome looks more like a tool or a serverside thing.
What does "a serverside thing" even mean?
jome has a server, or daemon mode, in which the picker runs without any window being visible and you can make its window visible with another command (jome-ctl
). This feature only exists to bring up the picker window instantly without having to wait for the application's startup time.
I would love to have an icon for it in my taskbar and automatically type the emoji where my focus is. I know I could do this myself but do you think this would be a great addition to have this option 'out of the box'?
You can use jome in many ways, but the classic use case is to:
To do this, bind a keyboard shortcut using whatever window manager you have to a script which launches jome
and then makes it run xdotool
, for example, to "type" the emoji once it hides the picker window.
See the README's "⌨️ the accepted emoji" section which contains some scripts to do this, for example:
#!/usr/bin/bash
emoji="$(jome)"
if [ $? -ne 0 ]; then
exit 1
fi
xdotool type "$emoji"
I'll leave this issue open for you to reply.
Sorry if I was unclear, what I meant is that, as is it looks like it's been conceived for automation, at least to me.
I guess regular desktop users don't want to create shell scripts to make it easy to use. Can this simple script you wrote above be turned into a command-line option for example?
Can this simple script you wrote above be turned into a command-line option for example?
In fact you can:
$ jome -n -c 'xdotool type'
Alright my bad. I'll probably make some kind of wrapper around it when I'll have some free time. Thank you for your time, feel free to close the issue if there's nothing more to say!
Hello, I just tried out jome, I must say it looks great! I was looking for a newer replacement to this https://github.com/edam/emoji-keyboard, but jome looks more like a tool or a serverside thing.
I would love to have an icon for it in my taskbar and automatically type the emoji where my focus is. I know I could do this myself but do you think this would be a great addition to have this option 'out of the box'?
Thanks