mirror of https://github.com/Chizi123/Scripts.git

Joel Grunbaum
2021-08-24 40f5e4e11932669aeb0838612fea9bebd5c5182c
commit | author | age
5d27f5 1 #!/bin/sh
JG 2
ea9da2 3 if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
JG 4     TOOL=ydotool
5 else
6     TOOL=xdotool
7 fi
8
5d27f5 9 if [ "$(pgrep autoclick | wc -l)" = "2" ]; then 
JG 10     true
11 else
12     pkill autoclick 
13 fi
14
15 while :; do
ea9da2 16     $TOOL click 1
JG 17     sleep 0.1
5d27f5 18 done
JG 19