├── .gitignore ├── LICENSE ├── README.md ├── media ├── author_title.gif ├── genre.gif └── help.gif └── src ├── alfred_books.py ├── book.py ├── icon.png ├── info.plist └── workflow ├── Notify.tgz ├── __init__.py ├── background.py ├── notify.py ├── update.py ├── util.py ├── version ├── web.py ├── workflow.py └── workflow3.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/README.md -------------------------------------------------------------------------------- /media/author_title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/media/author_title.gif -------------------------------------------------------------------------------- /media/genre.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/media/genre.gif -------------------------------------------------------------------------------- /media/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/media/help.gif -------------------------------------------------------------------------------- /src/alfred_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/alfred_books.py -------------------------------------------------------------------------------- /src/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/book.py -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/info.plist -------------------------------------------------------------------------------- /src/workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/Notify.tgz -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/__init__.py -------------------------------------------------------------------------------- /src/workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/background.py -------------------------------------------------------------------------------- /src/workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/notify.py -------------------------------------------------------------------------------- /src/workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/update.py -------------------------------------------------------------------------------- /src/workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/util.py -------------------------------------------------------------------------------- /src/workflow/version: -------------------------------------------------------------------------------- 1 | 1.40.0 -------------------------------------------------------------------------------- /src/workflow/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/web.py -------------------------------------------------------------------------------- /src/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/workflow.py -------------------------------------------------------------------------------- /src/workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codycodes/alfred-books/HEAD/src/workflow/workflow3.py --------------------------------------------------------------------------------