Command completion notifications -- client & listener -- OSX & Linux
See releases
for binary releases, or:
cargo install clin
clin
provides desktop notifications of completed commands.
```
clin -- cargo build --release
clin -c 'cargo build --release' ```
clin
can also be used on remote machines by using ssh
remote port forwarding.
If you're sharing the remote machine, you should probably use a non-default port (default is 6445
)
to avoid any port conflicts and misdirected notifications. See --help
for supported environment
variables to avoid having to specify --send
and --port
.
```
clin listen --log --port 3443
clin
portssh -R 3443:localhost:3443 you@host
--send
argclin -s -p 3443 -- ./some-build-script.sh # -> Get a local notification! ```
If you happen to be on the same network as your remote machine, you can listen "publicly" and specify the listener's hostname.
See --help
for supported environment variables to avoid having to specify --send
and --host
.
```
clin listen --public --log
clin -s --host