about summary refs log tree commit diff
path: root/pkgs/profpatsch/read-qr-code.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2024-07-20 15:21:22 +0200
committerProfpatsch <mail@profpatsch.de>2024-07-20 15:21:22 +0200
commitc43b9c851f4ce6707c903504c9619c66e0dc899b (patch)
tree13fc3dddc1dbb8695c8198d32eaa85fccd4d36a3 /pkgs/profpatsch/read-qr-code.nix
parent0b093e88199fd8f515a47002dd2817de9964c567 (diff)
machines/profpatsch: add read-qr-code-from-camera
Diffstat (limited to 'pkgs/profpatsch/read-qr-code.nix')
-rw-r--r--pkgs/profpatsch/read-qr-code.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/profpatsch/read-qr-code.nix b/pkgs/profpatsch/read-qr-code.nix
index 6448929e..b902feff 100644
--- a/pkgs/profpatsch/read-qr-code.nix
+++ b/pkgs/profpatsch/read-qr-code.nix
@@ -2,8 +2,7 @@
 
 let
   bins = getBins zbar [ "zbarimg" ]
-      // getBins imagemagick [ "import" ]
-      // getBins libnotify [ "notify-send" ];
+      // getBins imagemagick [ "import" ];
 
   script = writeExecline "read-qr-code" {} [
     "pipeline" [
@@ -18,6 +17,6 @@ let
 
 in script // {
   meta = {
-    description = "Capture a screenshot, then display the content of the QR code, if any";
+    description = "Capture a screenshot, then return the content of the QR code, if any";
   };
 }