summaryrefslogtreecommitdiff
path: root/scripts/dmenukaomoji
blob: 90cd3ec474ecdbf9180492bb1deaef984501cd74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

chosen=$(dmenu -i -l 20 < ~/.local/share/kaomoji | sed "s/\t.*//")

[ "$chosen" != "" ] || exit

# If you run this command with an argument, it will automatically insert the character.
echo "$chosen" | xclip -selection clipboard
if [ -n "$1" ]; then
	SUB="Minecraft"
	WINDOW=$(xdotool getactivewindow getwindowname)
	if [[ "$WINDOW" =~ .*"$SUB".* ]]; then
		xdotool key "ctrl+v" 
	else
		xdotool key "ctrl+v" 
		#xdotool key Shift+Insert
	fi
#xdotool type --delay 1 $chosen

#	VAR=$(xclip -o)

	#xdotool type $chosen
else
	notify-send "'$chosen' copied to clipboard." &
fi