From 6147c0758a9d0522e13fa601c3bf67ef8d23bc59 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Sat, 9 Jan 2021 14:32:30 +0100 Subject: [PATCH] Add tiny script to notify from stdin --- .bin/notify-pipe | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 .bin/notify-pipe diff --git a/.bin/notify-pipe b/.bin/notify-pipe new file mode 100755 index 0000000..558da71 --- /dev/null +++ b/.bin/notify-pipe @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +read msg +notify-send $msg "$@"