From 283d58c5d250ba9bec0513132adb7092df06d706 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 21 Nov 2023 10:32:49 +0000 Subject: [PATCH] update to reflect renaming of stdout_to_notis.sh to stdin_to_notis.sh! --- stdout_to_notis.sh | 8 -------- 1 file changed, 8 deletions(-) delete mode 100755 stdout_to_notis.sh diff --git a/stdout_to_notis.sh b/stdout_to_notis.sh deleted file mode 100755 index 604832b..0000000 --- a/stdout_to_notis.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# small script to turn the stdout output of a program into notifications line-by-line -# intended for use when a script is not being called from a terminal, but from a GUI application so that output can still be seen - -while read line -do - notify-send "$line" -done