aboutsummaryrefslogtreecommitdiff
path: root/Blista-Kanjo-Emoji/blista-emoji-picker
blob: b04b524ad615431ce2d31102295bdbc8ecc911f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

chosen=$(cut -d ';' -f1 ~/.local/share/Blista-Kanjo-Emoji/emoji | ~/.local/share/dmenu-custom/dmenu -i -l 30 | sed "s/ .*//")

[ -z "$chosen" ] && exit

if [ -n "$1" ]; then
	xdotool type "$chosen"
else
	echo -n "$chosen" | xclip -selection clipboard
	notify-send "'$chosen' copied to clipboard." &
fi