update to reflect renaming of stdout_to_notis.sh to stdin_to_notis.sh!

This commit is contained in:
2023-11-21 10:32:49 +00:00
parent a974dca8f3
commit 283d58c5d2

View File

@ -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