mirror of https://github.com/wlcx/home.git
6 lines
142 B
Nix
6 lines
142 B
Nix
|
{ pkgs }:
|
||
|
pkgs.writeShellScriptBin "qrclip" ''
|
||
|
set -eo pipefail
|
||
|
${pkgs.pngpaste}/bin/pngpaste - | ${pkgs.zbar}/bin/zbarimg --raw -q1 -
|
||
|
''
|