Change parameter's order for xdotool

This commit is contained in:
Arkadiusz Wieczorek 2022-01-05 14:49:02 +01:00
parent 8a31a36280
commit 380de097d4
1 changed files with 1 additions and 1 deletions

2
bemoji
View File

@ -156,7 +156,7 @@ _typer() {
elif [ -n "$WAYLAND_DISPLAY" ] && command -v wtype >/dev/null 2>&1; then
wtype -s 30 "$totype"
elif [ -n "$DISPLAY" ] && command -v xdotool >/dev/null 2>&1; then
xdotool type "$totype" --delay 30
xdotool --delay 30 type "$totype"
else
printf "No suitable typing tool found."
exit 1