Last active
August 10, 2020 15:38
-
-
Save madprops/177c08201ded32b1e9a976174959798b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
date=$(($(date +%s%N)/1000000)) | |
odate=$([ -r /tmp/closer_click_date ] && cat /tmp/closer_click_date) | |
oid=$([ -r /tmp/closer_click_id ] && cat /tmp/closer_click_id) | |
sedGetValue='s/.*=\(.*\)/\1/' | |
id=$(xdotool getmouselocation --shell 2>/dev/null | grep WINDOW | sed "$sedGetValue") | |
class=$(xprop -id "$id" | grep WM_CLASS) | |
type="normal" | |
if [[ "$class" == *"Firefox"* ]]; then | |
type="firefox" | |
fi | |
diff=date | |
if [[ -z "$odate" ]]; then | |
: | |
else | |
diff=$(("$date"-"$odate")) | |
fi | |
echo "$date" > /tmp/closer_click_date | |
echo "$id" > /tmp/closer_click_id | |
if [[ "$id" == "$oid" ]]; then | |
if (( "$diff" < 300 )); then | |
if [[ "$type" == "firefox" ]]; then | |
wmctrl -ia "$id" | |
sleep 0.2 | |
xdotool key Control_L+w | |
else | |
echo "Triggered" | |
wmctrl -ic "$id" | |
fi | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment