summaryrefslogtreecommitdiff
path: root/.local/bin/dwmbar/dwmb-eselect
blob: 2d83c8b14115ef582bd086b1d24b42670b48922e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

icon=""

total="$(eselect news count all)"
unread="$(eselect news count new)"

case "$total" in
0) echo "" ;;
*) echo "$icon $unread/$total " ;;
esac