Giter Site home page Giter Site logo

dense-mouse-grid's Introduction

Dense Mouse Grid

Video Demonstration Here

The Dense Mouse Grid is a voice operated mousing system relying on naming all points on a screen with a number-letter-letter coordinate, so I can say '3 A B' and it will move the mouse to sector 3, row a, column b on the screen.

The README for this project is provided in the dense mouse grid folder because it is useful to keep the script and the documentation all together in the same folder when installing Talon plugins.

output-2000

dense-mouse-grid's People

Contributors

tararoys avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

dense-mouse-grid's Issues

field_size settings from full_mouse_settings.talon does not load

The settings from full_mouse_settings.talon do not load immediately. I can trigger them to load by going to full_mouse_grid.py and saving that file, at which point the full_mouse_grid stops using the default file settings and starts using the settings in full_mouse_settings.talon.

Newest Talon version with multiple control modes breaks the dense grid

The newest version of talon has two control mouse modes and it seems like the original control mouse mode referenced in the dense grid code does not exist anymore.

[The below error was raised while handling the above exception(s)]
... TRUNCATED...
talon.scripting.talon_script.TalonScriptError: 
 in script at /home/nathanheffley/.talon/user/dense-mouse-grid/dense_mouse_grid/full_mouse_grid.talon:5:
   user.full_grid_close()
 > user.full_grid_activate()
AttributeError: module 'talon_plugins.eye_mouse' has no attribute 'control_mouse'

I was able to fix this rather easily because I don't use control mouse with this dlff:

diff --git a/dense_mouse_grid/full_mouse_grid.py b/dense_mouse_grid/full_mouse_grid.py
index 6d5d12e..237a1fa 100644
--- a/dense_mouse_grid/full_mouse_grid.py
+++ b/dense_mouse_grid/full_mouse_grid.py
@@ -313,7 +313,7 @@ class MouseSnapMillion:
         if eye_zoom_mouse.zoom_mouse.enabled:
             self.was_zoom_mouse_active = True
             eye_zoom_mouse.toggle_zoom_mouse(False)
-        if eye_mouse.control_mouse.enabled:
+        if False:
             self.was_control_mouse_active = True
             eye_mouse.control_mouse.toggle()
 
@@ -349,7 +349,7 @@ class MouseSnapMillion:
         # actions.user.mouse_grid_help_overlay_close()
 
         self.active = False
-        if self.was_control_mouse_active and not eye_mouse.control_mouse.enabled:
+        if self.was_control_mouse_active and False:
             eye_mouse.control_mouse.toggle()
         if self.was_zoom_mouse_active and not eye_zoom_mouse.zoom_mouse.enabled:
             eye_zoom_mouse.toggle_zoom_mouse(True)

This does not maintain the functionality of turning control mouse back on after closing the grid, though.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.