https://github.com/fmotalleb/nu_plugin_qr_maker
A nushell plugin to create qr code in terminal
https://github.com/fmotalleb/nu_plugin_qr_maker
nushell-plugin qrcode-generator
Last synced: 4 months ago
JSON representation
A nushell plugin to create qr code in terminal
- Host: GitHub
- URL: https://github.com/fmotalleb/nu_plugin_qr_maker
- Owner: FMotalleb
- License: mit
- Archived: true
- Created: 2023-11-28T13:28:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-29T19:19:13.000Z (over 1 year ago)
- Last Synced: 2025-09-07T06:43:38.552Z (5 months ago)
- Topics: nushell-plugin, qrcode-generator
- Language: Rust
- Homepage:
- Size: 74.2 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nu_plugin_qr_maker
A [nushell](https://www.nushell.sh/) plugin to create qr code in terminal
## Examples
```bash
~> "https://google.com" | to qr
```

## Installing
* using [nupm](https://github.com/nushell/nupm)
```bash
git clone https://github.com/FMotalleb/nu_plugin_qr_maker.git
nupm install --path nu_plugin_qr_maker -f
```
* or compile manually
```bash
git clone https://github.com/FMotalleb/nu_plugin_qr_maker.git
cd nu_plugin_qr_maker
cargo build
register target/debug/nu_plugin_qr_maker
```
* or using cargo
```bash
cargo install nu_plugin_qr_maker
register ~/.cargo/bin/nu_plugin_qr_maker
```