Files
nix/dots/.bin/notify
2025-10-04 18:28:04 +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" "$@"