Hacker News new | ask | show | jobs
by dudik 2093 days ago
If you just need to display some text or at most you need a "yes/no" answer that integrates well with your bash script, you could try herbe[1]. I was somewhat inspired by zenity, but it felt too heavy for my minimal use case.

[1] https://github.com/dudik/herbe

2 comments

Too heavy? The executable I just built is 19K. I like it for localhost.

Did you wind up picking something else?

Sorry for my poor choice of words. What I wanted to say was that I prefer using software that does exactly what I need and nothing else. For some people it might sound silly, but I enjoy the suckless philosophy.
I use notifications only for things that take a long time so I can disengage work on something else for a while.

"long build has completed"

is pretty much my primary notification.

Try `notify-send TEXT` instead. E.g.

  alias n="notify-send Completed."
I use something like:

    echo -e "command\n with a long output,\n and it's last line" |tee /dev/tty| tail -n 1| { read -d '\n' _output ; notify-send "$_output"; telegram-send "$_output"; }
This will send the last n lines of stdout to:

- gnome-notifications

- telegram on my phone from a bot account that uses a unique notification sound

Thank you, but I don't use a notification server.
Nothing is stopping you, even if you don't run any kind of GUI session: https://github.com/Sweets/tiramisu
notify-send is for desktop(possibly gnome only?) notifications.
notify-send works by sending notifications to a notification daemon (a.k.a., a "notification server", as defined in the "Desktop Notifications Specification").

notify-send won't work for dudik since, as he said, he doesn't use a notification server.