diff --git a/bumblebee/modules/pacman.py b/bumblebee/modules/pacman.py index 7b2ebb6..a7780a8 100644 --- a/bumblebee/modules/pacman.py +++ b/bumblebee/modules/pacman.py @@ -27,7 +27,7 @@ def get_pacman_info(widget, path): count = len(repos)*[0] for line in result.splitlines(): - if line.startswith("http"): + if line.startswith(("http", "rsync")): for i in range(len(repos)-1): if "/" + repos[i] + "/" in line: count[i] += 1