W00T !
Primo :crea uno script click
:
#!/bin/bash
id=$(
xinput list |
awk '/Dell USB Keyboard/{print gensub(/.*id=([0-9]+).*/, "\\1", "1")}'
)
xdotool mousedown $1
while IFS= read -r event; do
if [[ $event == *release* ]]; then
xdotool mouseup $1
exit
fi
done < <(xinput test $id)
Quindi aggiungi una nuova scorciatoia da tastiera nel tuo gestore di finestre e mappa F1 per eseguire /path/to/mouse <1|3>
(sinistra OR clic destro).
Et voilà;)
Questo può essere eseguito con xbindkeys
essere WM agnostico
Modifica:
non so perché questo non funziona con archlinux + xfce 4.12 ma su Debian9 + Cinnamon
Modifica :
Questa soluzione funziona meglio :
In .bashrc
:
xmodmap -e "keycode 67 = Pointer_Button1 Pointer_Button1"
xmodmap -e "keycode 68 = Pointer_Button2"
xmodmap -e "keycode 69 = Pointer_Button3"
Come scorciatoia da tastiera :
#!/bin/bash
id=$(
xinput list |
awk '/Dell USB Keyboard/{print gensub(/.*id=([0-9]+).*/, "\\1", "1")}'
)
(
while read event; do
if [[ $event == *release* ]]; then
xkbset -m
exit
fi
done < <(xinput test $id)
) &
xkbset m