Initial commit

This commit is contained in:
coolneng 2020-07-27 16:32:39 +02:00
commit d123352e89
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
3 changed files with 9 additions and 0 deletions

3
README.org Normal file
View File

@ -0,0 +1,3 @@
* Proarbeit
Simple mouse controlling script that eratically moves around the screen.

1
proarbeit.py Normal file
View File

@ -0,0 +1 @@
from pynput.mouse import Listener

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell { buildInputs = [ python38Packages.pynput ]; }