git-subtree-dir: dots git-subtree-mainline:2ad98cde17git-subtree-split:f64b634dd8
9 lines
121 B
Bash
Executable File
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" "$@"
|