8 lines
136 B
Plaintext
8 lines
136 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
icon="$(cat "/tmp/newsupdate" 2>/dev/null)"
|
||
|
|
||
|
unread="$(cat "$HOME/.cache/news_unread" 2>/dev/null)"
|
||
|
|
||
|
echo " $unread$icon"
|