summaryrefslogtreecommitdiff
path: root/.local/bin/dwmbar/check-eselect
blob: 760765b3241c78445c7983da0e6ece8f9c78c718 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

if [ "$(eselect news count all)" -eq 0 ]; then
  exit 1
else
  exit 0
fi