Metadata-Version: 2.1
Name: remarkable-mouse
Version: 5.2.0
Summary: use reMarkable as a graphics tablet
Home-page: https://github.com/evidlo/remarkable_mouse
Author: Evan Widloski
Author-email: evan@evanw.org
License: GPLv3
Description: # remarkable_mouse
        
        Use your reMarkable as a graphics tablet.
        
        Special thanks to [canselcik](https://github.com/canselcik/libremarkable) and [LinusCDE](https://github.com/LinusCDE/rmWacomToMouse) for inspiration.
        
        <img src="photo.gif" width=800>
        
        # Quick Start
        
        On the host machine
        
        ``` bash
        pip install remarkable-mouse
        remouse
        ```
        
        By default, `10.11.99.1` is used as the address. Seems to work pretty well wirelessly, too. By default ssh-agent is used to authenticate if it is available, otherwise you are asked for your password.
        
        # Examples
        
        specify address, monitor, orientation, password
        
        ``` bash
        remouse --address 192.168.1.1 --orientation right --monitor 1 --password foobar
        ```
        passwordless login
        
        ``` bash
        ssh-keygen -m PEM -t rsa -f ~/.ssh/remarkable -N ''
        ssh-copy-id -i ~/.ssh/remarkable.pub root@10.11.99.1
        remouse --key ~/.ssh/remarkable
        ```
        
        # Usage
        
            usage: remouse [-h] [--debug] [--key PATH] [--password PASSWORD]
                       [--address ADDRESS] [--orientation {vertical,left,right}]
                       [--monitor NUM] [--threshold THRESHOLD] [--evdev]
        
            use reMarkable tablet as a mouse input
        
            optional arguments:
              -h, --help            show this help message and exit
              --debug               enable debug messages
              --key PATH            ssh private key
              --password PASSWORD   ssh password
              --address ADDRESS     device address
              --orientation {vertical,left,right}
              --monitor NUM         monitor to use
              --threshold THRESHOLD
                                    stylus pressure threshold (default 1000)
              --evdev               use evdev to support pen tilt (requires root, no OSX
                                support)
        
Keywords: remarkable tablet evdev
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
