From d123352e89ad47af5d75713c75c52cdd64bd3f86 Mon Sep 17 00:00:00 2001 From: coolneng Date: Mon, 27 Jul 2020 16:32:39 +0200 Subject: [PATCH] Initial commit --- README.org | 3 +++ proarbeit.py | 1 + shell.nix | 5 +++++ 3 files changed, 9 insertions(+) create mode 100644 README.org create mode 100644 proarbeit.py create mode 100644 shell.nix 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 ]; }