diff options
author | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-05-05 15:49:36 -0500 |
---|---|---|
committer | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-05-05 15:49:36 -0500 |
commit | 3b1f02e4f5248145ce16e5d95b9a57d847dab38b (patch) | |
tree | 60160bef2930ba5411b694e2915dbd44adbcc55b /xbindkeysrc.keyboard.is.mouse |
Diffstat (limited to 'xbindkeysrc.keyboard.is.mouse')
-rw-r--r-- | xbindkeysrc.keyboard.is.mouse | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/xbindkeysrc.keyboard.is.mouse b/xbindkeysrc.keyboard.is.mouse new file mode 100644 index 0000000..37fbcfe --- /dev/null +++ b/xbindkeysrc.keyboard.is.mouse @@ -0,0 +1,61 @@ +# IS MOUSE + +"xbindkeys_show" +control+shift + g + +"dash /home/user/.type-to-move-cursor/deactivate-type-to-move-cursor.sh" +Mod4 + 1 + +"echo -n ''" +Mod4 + 2 + +"dash /home/user/.type-to-move-cursor/Q.sh" +q + +"dash /home/user/.type-to-move-cursor/A.sh" +a + +"dash /home/user/.type-to-move-cursor/Z.sh" +z + +"dash /home/user/.type-to-move-cursor/X.sh" +x + +"dash /home/user/.type-to-move-cursor/C.sh" +c + +"dash /home/user/.type-to-move-cursor/D.sh" +d + +"dash /home/user/.type-to-move-cursor/E.sh" +e + +"dash /home/user/.type-to-move-cursor/W.sh" +w + +# Asigna clic izquierdo a la tecla F +"xdotool click 1" +f + +# Asigna clic derecho a la tecla J +"xdotool click 3" +j + +# Asigna rueda hacia arriba a la tecla U +"xdotool click --repeat 3 4" +u + +# Asigna rueda hacia abajo a la tecla M +"xdotool click --repeat 3 5" +m + +"dash /home/user/.type-to-move-cursor/S.sh" +s + +# Asigna Control + Rueda Arriba a Ctrl + U +"( xdotool keydown Control && sleep 0.1s && xdotool keyup Control) & (xdotool click --repeat 3 4)" +control+u + +# Asigna Control + Rueda Abajo a Ctrl + M +"( xdotool keydown Control && sleep 0.1s && xdotool keyup Control) & (xdotool click --repeat 3 5)" +control+m |