This repository has been archived on 2026-08-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
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" "$@"