dots/.bin/notify

9 lines
121 B
Plaintext
Raw Permalink Normal View History

2022-05-11 14:24:20 +02:00
#!/usr/bin/env bash
# Pipe into notify-send
#
# e.g. `echo "Hello world" | notify`
read -r msg
notify-send "$msg" "$@"