Initial commit

This commit is contained in:
2020-07-27 16:32:39 +02:00
commit d123352e89
3 changed files with 9 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
* Proarbeit
Simple mouse controlling script that eratically moves around the screen.
+1
View File
@@ -0,0 +1 @@
from pynput.mouse import Listener
+5
View File
@@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell { buildInputs = [ python38Packages.pynput ]; }