Skip to content

Instantly share code, notes, and snippets.

@mvoropaiev
Last active February 10, 2017 12:26
Show Gist options
  • Save mvoropaiev/ff831a7c060ea506d6014700385e6c41 to your computer and use it in GitHub Desktop.
Save mvoropaiev/ff831a7c060ea506d6014700385e6c41 to your computer and use it in GitHub Desktop.
little script for newsbeuter desktop notifications

Install this script somewhere in your PATH,
and configure newsbeuter something like this:

notify-always yes
notify-format "%d new articles (%n unread articles, %f unread feeds)"
notify-program newsbeuter-notify.sh
#!/usr/bin/env bash
exec notify-send \
--hint="int:transient:1" \
--icon="rss" \
--app-name="newsbeuter" \
"newsbeuter" "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment