mirror of
https://gitlab.com/ceda_ei/kaomoji-rofi
synced 2025-07-05 11:26:52 +02:00
6 lines
182 B
Bash
Executable File
6 lines
182 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
selection=$(rofi -i -dmenu $@ < $(dirname $0)/kaomoji.txt)
|
|
kaomoji=$(echo $selection | sed "s|$(echo -e "\ufeff").*||")
|
|
xdotool type --clearmodifiers "$kaomoji"
|