You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
689 B
40 lines
689 B
#!/bin/sh |
|
|
|
if [ "$1" = clear ]; then |
|
rm -f "$XDG_RUNTIME_DIR"/sxmo.multikey.count.* |
|
exit |
|
fi |
|
|
|
identifier="$1" |
|
threshold="${SXMO_THRESHOLD:-0.30}" |
|
|
|
count_file="$XDG_RUNTIME_DIR"/sxmo.multikey.count."$identifier" |
|
|
|
if [ -f "$count_file" ]; then |
|
counter="$(($(cat "$count_file")+1))" |
|
else |
|
counter=1 |
|
fi |
|
|
|
printf %s "$counter" > "$count_file" |
|
|
|
shift "$counter" |
|
if [ "$#" -eq 0 ]; then |
|
exit |
|
fi |
|
|
|
sleep "$threshold" |
|
|
|
new_counter="$(cat "$count_file")" |
|
if [ "$counter" != "$new_counter" ] && [ "$#" -ne 1 ]; then # Only the last count can overflow |
|
exit |
|
fi |
|
|
|
eval "$1" & |
|
|
|
if [ "$counter" != "$new_counter" ]; then # overlowed |
|
printf "%s * 2" "$threshold" | bc | xargs sleep |
|
fi |
|
|
|
rm "$count_file" |
|
|
|
|