diff options
| author | Volpeon <git@volpeon.ink> | 2021-02-27 21:48:24 +0100 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2021-02-27 21:48:24 +0100 |
| commit | ffe0e8b786450bba75227e103d51137011c66480 (patch) | |
| tree | 2c2838bec3f71fd22f0de5b74e4a04b307359b65 | |
| parent | Switch from dbus-python to pydbus (diff) | |
| download | mpris-to-text-ffe0e8b786450bba75227e103d51137011c66480.tar.gz mpris-to-text-ffe0e8b786450bba75227e103d51137011c66480.tar.bz2 mpris-to-text-ffe0e8b786450bba75227e103d51137011c66480.zip | |
Hide cursor
| -rwxr-xr-x | mpris_to_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
| 163 | self.refresh_cond.notify() | 163 | self.refresh_cond.notify() |
| 164 | 164 | ||
| 165 | def run(self): | 165 | def run(self): |
| 166 | with term.fullscreen(): | 166 | with term.fullscreen(), term.hidden_cursor(): |
| 167 | while not self.exit_flag: | 167 | while not self.exit_flag: |
| 168 | with self.refresh_cond: | 168 | with self.refresh_cond: |
| 169 | while not self.refresh_flag and not self.exit_flag: | 169 | while not self.refresh_flag and not self.exit_flag: |
