8 lines
290 B
Bash
Executable File
8 lines
290 B
Bash
Executable File
#!/bin/sh
|
|
CACHE="${XDG_DATA_HOME:-$HOME/.local/share}/newsboat/cache.db"
|
|
unread="$(sqlite3 "$CACHE" "SELECT unread,pubDate,title FROM rss_item;" |
|
|
grep -vE '^0' | sort -t'|' -k2 -gr | head -n1 |
|
|
sed 's/[0-9]*|[0-9]*|//')"
|
|
|
|
notify-send "newsboat" "$(printf 'new article:\n %s' "$unread")"
|