I want to use command notify-send and display text from a file as a notification so that I can only edit that file to change command or forward contents from outputs of other programs to notify-send.
I tried :
notify-send -u critical -t 3000 < ~/vedcat ved | notify-send -u critical -t 3000
It says : No summary specified.
What should I do about this summary?
git ls-remote "https://bitbucket.org/$username/$reponame.git" 2>&1 1>/dev/null | while read OUTPUT; do notify-send "error" "$OUTPUT" -i gtk-error; done– Khurshid Alam Jan 08 '14 at 12:07~/.bash_aliases:function notify { while read input; do notify-send "message" "$input"; done; }. – TRiG Mar 30 '15 at 22:27