-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIsTyping
More file actions
executable file
·57 lines (45 loc) · 978 Bytes
/
IsTyping
File metadata and controls
executable file
·57 lines (45 loc) · 978 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
read -p "Salam! how many minutes is enough for your purpose?" min
# Check if input is a number or not
while [[ ! $min =~ ^[0-9]+$ ]];
do
read -p "Please enter a number:" min
done
# Search for telegram window id
function get_window_id () {
value= xdotool search --name "Telegram "
return $value
}
window_id=$(get_window_id)
# Show proper error if telegram is not running.
if [ -z $window_id ];
then
echo "Error: run telegram and try again."
exit
fi
# window_id example: 100663300
echo $window_id
# Make an array with statement and convert minutes to seconds
array=(i love you.)
sec=min*60/4
# Do the job:)
for ((i=1; i<=sec; i++))
do
for item in ${array[@]}
do
xdotool type --window $window_id "$item "
sleep 1
done
sleep 1
# Simulate human behavior with stop a while
if (($i % 10 == 0))
then
sleep 10
fi
if (($i % 37 == 0))
then
sleep 15
fi
done
exit