9 lines
121 B
Plaintext
9 lines
121 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Pipe into notify-send
|
||
|
#
|
||
|
# e.g. `echo "Hello world" | notify`
|
||
|
|
||
|
read -r msg
|
||
|
notify-send "$msg" "$@"
|