From a2fbcfb6d9b691001be27ed33d9189023a0d613e Mon Sep 17 00:00:00 2001 From: mlmatlock <42914546+mlmatlock@users.noreply.github.com> Date: Mon, 27 Nov 2023 20:08:38 -0500 Subject: [PATCH] Update arch_updates.py Upstream (https://github.com/falconindy/auracle) changed "sync" to "outdated" via 893c622, on 26 Oct 2019 --- py3status/modules/arch_updates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py3status/modules/arch_updates.py b/py3status/modules/arch_updates.py index 2a4b369d2f..ff5109594d 100644 --- a/py3status/modules/arch_updates.py +++ b/py3status/modules/arch_updates.py @@ -100,7 +100,7 @@ def _get_checkupdates_updates(self): def _get_auracle_updates(self): try: - updates = self.py3.command_output(["auracle", "sync"]) + updates = self.py3.command_output(["auracle", "outdated"]) return len(updates.splitlines()) except self.py3.CommandError as ce: return None if ce.error else 0