Skip to content

anasrar/viz

Repository files navigation

Viz

Keystroke and Mouse Visualizer

Development

Setup

  • clone this repository

    git clone https://github.com/anasrar/viz && cd viz
  • run to install dependency and generate icon

    yarn
    yarn icon
  • run to build papan (global keyboard and mouse listener)

    Unix

    cd python
    python -m venv .venv
    source .venv/bin/activate
    pip install -r ./requirements.txt
    pyinstaller papan.py -y --clean --onefile
    pyinstaller papan_server.py -y --clean --onefile

    Windows (Powershell)

    cd python
    python -m venv .venv
    .\.venv\Scripts\Activate
    pip install -r ./requirements.txt
    pyinstaller papan.py -y --clean --onefile
    pyinstaller papan_server.py -y --clean --onefile

Build

  • run yarn build
  • output in release folder

How To Contribute

Built With