commit d123352e89ad47af5d75713c75c52cdd64bd3f86 Author: coolneng Date: Mon Jul 27 16:32:39 2020 +0200 Initial commit diff --git a/README.org b/README.org new file mode 100644 index 0000000..60865ed --- /dev/null +++ b/README.org @@ -0,0 +1,3 @@ +* Proarbeit + +Simple mouse controlling script that eratically moves around the screen. diff --git a/proarbeit.py b/proarbeit.py new file mode 100644 index 0000000..5768829 --- /dev/null +++ b/proarbeit.py @@ -0,0 +1 @@ +from pynput.mouse import Listener diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..bf53233 --- /dev/null +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import { } }: + +with pkgs; + +mkShell { buildInputs = [ python38Packages.pynput ]; }