Files
dots/.bin/notify
T
2022-05-11 14:24:20 +02:00

9 lines
121 B
Bash
Executable File

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