From ffe0e8b786450bba75227e103d51137011c66480 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 27 Feb 2021 21:48:24 +0100 Subject: Hide cursor --- mpris_to_text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpris_to_text.py b/mpris_to_text.py index 2f75350..98a004a 100755 --- a/mpris_to_text.py +++ b/mpris_to_text.py @@ -163,7 +163,7 @@ class Menu(threading.Thread): self.refresh_cond.notify() def run(self): - with term.fullscreen(): + with term.fullscreen(), term.hidden_cursor(): while not self.exit_flag: with self.refresh_cond: while not self.refresh_flag and not self.exit_flag: -- cgit v1.2.3-54-g00ecf