Artifact 383d80e96ce87b729660894a4eba7897324547765361e1af9d1cb95e27e195f3:
- File prog/qr.sh — part of check-in [4be033e7c6] at 2025-01-30 14:31:26 on branch main — Use qrencode instead of re-create python program (user: sekun size: 97)
#!/bin/bash FILE=$(mktemp) qrencode -o $FILE "$(xclip -o)" -s 10 "$@" xdg-open $FILE rm $FILE