https://github.com/lezgomatt/hoy
A dead simple notifier.
https://github.com/lezgomatt/hoy
Last synced: 11 months ago
JSON representation
A dead simple notifier.
- Host: GitHub
- URL: https://github.com/lezgomatt/hoy
- Owner: lezgomatt
- License: zlib
- Created: 2025-07-22T11:34:20.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-08-02T15:32:28.000Z (11 months ago)
- Last Synced: 2025-08-02T17:37:01.968Z (11 months ago)
- Language: Python
- Homepage: https://pypi.org/project/hoy/
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Hoy! [](https://pypi.org/project/hoy/)
====
A dead simple notifier.
Be informed when your scripts finish running!
Installation
------------
```bash
pipx install hoy
# or
uv tool install hoy
```
Usage
-----
Simply run `hoy` after a long-running process (example: `sleep 5`):
```bash
sleep 5; hoy
# Or if you want a custom message:
sleep 5; hoy "All clear, my dear!" # it'll also work without quotes
# Or if you want different messages for success and failure:
sleep 5; hoy $status # or `hoy $?` depending on your shell
# Or if you want a custom message again:
sleep 5 && hoy Success! || hoy Fail!
```