9 lines
273 B
Bash
Executable file
9 lines
273 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
e=$(worf --show emoji --emoji-stdout true --emoji-hide-string true --columns 4 --content-halign=center --width 600 --style "${HOME}/.config/worf/emoji.css")
|
|
if [[ -z "${e}" ]];then
|
|
echo "no emoji selected"
|
|
exit 1
|
|
fi
|
|
echo "${e}"
|
|
ydotool type "${e}"
|