about summary refs log tree commit diff
path: root/pkgs/profpatsch/read-qr-code.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-10-26 20:43:42 +0200
committerProfpatsch <mail@profpatsch.de>2021-10-26 20:44:14 +0200
commit8f94668741384c206328c1abce939a6f711ba874 (patch)
tree14e6021d2f282eef7cc9fc96179dda538783b936 /pkgs/profpatsch/read-qr-code.nix
parentd0e94dedb933e8694a63840d0e3f3332dcdef4bb (diff)
machines/shiki: add read-qr-code
Diffstat (limited to 'pkgs/profpatsch/read-qr-code.nix')
-rw-r--r--pkgs/profpatsch/read-qr-code.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/profpatsch/read-qr-code.nix b/pkgs/profpatsch/read-qr-code.nix
new file mode 100644
index 00000000..bc4684c1
--- /dev/null
+++ b/pkgs/profpatsch/read-qr-code.nix
@@ -0,0 +1,26 @@
+{ stdenv, writeExecline, getBins, zbar, libnotify, imagemagick }:
+
+let
+  bins = getBins zbar [ "zbarimg" ]
+      // getBins imagemagick [ "import" ]
+      // getBins libnotify [ "notify-send" ];
+
+  script = writeExecline "read-qr-code" {} [
+    "backtick" "-iE" "qrcontent" [
+      "pipeline" [
+        bins.import "png:-"
+      ]
+      bins.zbarimg
+        "-Sdisable"
+        "-Sqrcode.enable"
+        "--raw"
+        "-"
+    ]
+    bins.notify-send "$qrcontent"
+  ];
+
+in script // {
+  meta = {
+    description = "Capture a screenshot, then display the content of the QR code, if any";
+  };
+}