From 9060397309f4712322e694b545160943f4dd6c22 Mon Sep 17 00:00:00 2001 From: Digital Studium Date: Sat, 6 Apr 2024 18:26:16 +0300 Subject: [PATCH] fix delay --- VERSION | 2 +- r | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 809bdcb..d3456a9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.12 +1.13 diff --git a/r b/r index 6a083eb..fd54ae5 100755 --- a/r +++ b/r @@ -1,4 +1,4 @@ #!/bin/bash trap 'clear' SIGINT setxkbmap -cat ~/.aliases.txt | fzf | cut -d : -f 2- | sed s/\ // | (stty -F /dev/tty -echo; xargs -0 -I _ xdotool type --delay 0 _; stty -F /dev/tty echo) && xdotool key KP_Enter +cat ~/.aliases.txt | fzf | cut -d : -f 2- | sed s/\ // | (stty -F /dev/tty -echo; xargs -0 -I _ xdotool type --delay 0 _; stty -F /dev/tty echo) && xdotool key --delay 0 KP_Enter