From 78a0e1526b36e2ac218df4165c9b08619faeb952 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 "$@"