2018-04-12 22:55:55 +00:00
|
|
|
# Alfred Yubico Auth
|
2017-08-07 17:20:22 +00:00
|
|
|
|
|
|
|
An Alfred Workflow for auto filling authentication codes stored on your Yubikey.
|
|
|
|
|
2018-04-12 22:55:55 +00:00
|
|
|
## Notes
|
2017-08-07 17:20:22 +00:00
|
|
|
|
|
|
|
This is definitely a work in progress. There are a lot of rough edges yet to be polished, but here it goes.
|
|
|
|
|
2018-04-12 22:55:55 +00:00
|
|
|
* Requires some to be installed with a package manager
|
2017-08-07 17:20:22 +00:00
|
|
|
* There is no way to input your key password through the UI yet. Do that with `make set-password` and then it should work fine.
|
|
|
|
* Error handling is terrible right now. If things don't work, check the debug log in Alfred
|
|
|
|
|
2018-04-12 22:55:55 +00:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
Clone this repo
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://git.iamthefij.com/iamthefij/alfred-yubico-auth.git
|
|
|
|
```
|
|
|
|
|
|
|
|
Either install your dependencies manually or, if you have MacPorts, you can use:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make install-ports
|
|
|
|
```
|
|
|
|
|
|
|
|
Otherwise you need to install `swig swig-python ykpers libu2f-host libusb` some other way.
|
|
|
|
|
|
|
|
Finally up the virtualenv and install to your Alfred with
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make install
|
|
|
|
```
|
|
|
|
|
|
|
|
## Credits
|
2017-08-07 17:20:22 +00:00
|
|
|
|
|
|
|
Uses the amazing [deanishe/alfred-workflow](https://github.com/deanishe/alfred-workflow) package
|