From 6786b3038a0842732eb9ab05f8f30f23cadeae49 Mon Sep 17 00:00:00 2001 From: Arkadiusz Wieczorek Date: Fri, 7 Jan 2022 00:47:20 +0100 Subject: [PATCH] Fix order parameters --- bemoji | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bemoji b/bemoji index 136e292..babfdc8 100755 --- a/bemoji +++ b/bemoji @@ -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 --delay 30 type "$totype" + xdotool type --delay 30 "$totype" else printf "No suitable typing tool found." exit 1