#!/bin/bash -eu

newsboat -x reload
unread=$(newsboat -x print-unread)
if ! [[ "$unread" == 0* ]]; then
	newsboat
fi