From 380de097d48b488018b6bed50b5f7bf843f6cebd Mon Sep 17 00:00:00 2001 From: Arkadiusz Wieczorek Date: Wed, 5 Jan 2022 14:49:02 +0100 Subject: [PATCH] Change parameter's order for xdotool --- bemoji | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bemoji b/bemoji index 786765b..136e292 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 type "$totype" --delay 30 + xdotool --delay 30 type "$totype" else printf "No suitable typing tool found." exit 1