Restore color

This commit is contained in:
Dimitris Zlatanidis 2023-01-28 09:24:28 +02:00
parent 10613b1f30
commit bf16f9afcb
5 changed files with 5 additions and 5 deletions

View file

@ -65,4 +65,4 @@ class CheckUpdates(Configs):
p2.join()
# Restore the terminal cursor
print('\x1b[?25h')
print('\x1b[?25h', self.endc)

View file

@ -95,7 +95,7 @@ class Downloader(Configs, Utilities):
p2.join()
# Restore the terminal cursor
print('\x1b[?25h')
print('\x1b[?25h', self.endc)
else:
self.wget()

View file

@ -114,7 +114,7 @@ class RemovePackages(Configs):
p2.join()
# Restore the terminal cursor
print('\x1b[?25h')
print('\x1b[?25h', self.endc)
else:
self.process(command)

View file

@ -302,7 +302,7 @@ class Slackbuilds(Configs):
p2.join()
# Restore the terminal cursor
print('\x1b[?25h')
print('\x1b[?25h', self.endc)
else:
self.process(command)

View file

@ -77,7 +77,7 @@ class UpdateRepository(Configs):
p2.join()
# Restore the terminal cursor
print('\x1b[?25h', end='')
print('\x1b[?25h', self.endc, end='')
self.sbo()