From 94c8d57f3576119d5d2e9c303aa49a1703405f7d Mon Sep 17 00:00:00 2001 From: KubaPro010 <132459354+KubaPro010@users.noreply.github.com> Date: Wed, 5 Nov 2025 21:33:03 +0100 Subject: [PATCH] skip --- modules/cli_progress.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/cli_progress.py b/modules/cli_progress.py index 9b494f3..72c8735 100644 --- a/modules/cli_progress.py +++ b/modules/cli_progress.py @@ -11,5 +11,7 @@ class Module(PlayerModule): def progress(self, index: int, track: Track, elapsed: float, total: float, real_total: float) -> None: if track.official: print(f"{os.path.basename(track.path)}: {format_time(elapsed)} / {format_time(total)}", end="\r", flush=True) + if os.path.exists("/tmp/radioPlayer_skip"): + self._imc.send(self, "procman", {"op": 2}) module = Module() \ No newline at end of file