Sekun utilities

qr.sh
Login

File prog/qr.sh from the latest check-in


#!/bin/bash

FILE=$(mktemp)

qrencode -o $FILE "$(xclip -o)" -s 10 "$@"
xdg-open $FILE
rm $FILE