quiqr

Crates.ioquiqr
lib.rsquiqr
version0.1.2
sourcesrc
created_at2020-08-05 11:39:25.891846
updated_at2020-08-05 12:11:25.383225
descriptionA tool for quickly generating a QR code and displaying it on screen.
homepagehttps://github.com/agelito/quiqr
repositoryhttps://github.com/agelito/quiqr
max_upload_size
id273161
size183,965
Axel Wettervik (agelito)

documentation

README

quiqr

Quiqr is a tool for quickly generating a QR code from text and then display the generated QR code on screen.

Usage

Quiqr can display QR codes coming from various input sources. But it can only have one input source selected. The options are:

  • String supplied as command line argument.
  • String from current clipboard content.
  • String from stdin.

Quiqr can also optionally save the generated QR code to an image file.

Running

# Generates a QR code from the string `Hello, Quiqr!`.
./quiqr -e "Hello, Quiqr!"

# Generates a QR code from the current clipboard contents.
./quiqr -c 

# Generates a QR code from stdin.
./quiqr -s 

# 🖼 Generates a QR code and saves it to 'qr.png'.
./quiqr -c -w "qr.png"

Keyboard Shortcuts

  • <ESC> or <Q> Close the window.
Commit count: 17

cargo fmt