Metadata-Version: 2.4
Name: hoy
Version: 1.0.0
Summary: A dead simple notifier.
Project-URL: Documentation, https://github.com/lezgomatt/hoy#readme
Project-URL: Issues, https://github.com/lezgomatt/hoy/issues
Project-URL: Source, https://github.com/lezgomatt/hoy
Author-email: Matthew Go <lezgomatt@gmail.com>
License-Expression: Zlib
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown

Hoy!
====

A dead simple notifier.


Installation
------------

```bash
pipx install hoy
```


Usage
-----

Simply run `hoy` after a long-running process (example: `sleep 5`):

```bash
sleep 5; hoy
```

Or if you want different messages for success and failure:

```bash
sleep 5 && hoy Success! || hoy Fail!
```
