Set color off by default

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-10-28 09:26:56 +03:00
parent 9ec96c6565
commit 86a5871193
2 changed files with 3 additions and 3 deletions

View file

@ -39,8 +39,8 @@ configs:
# Slackware command fro remove packages.
removepkg: removepkg
# Cli menu colors configs. Default is on. [on/off]
colors: on
# Cli menu colors configs. Default is off. [on/off]
colors: off
# Wget downloader options.
# -c, --continue: resume getting a partially-downloaded file.

View file

@ -44,7 +44,7 @@ class Configs:
removepkg: str = 'removepkg'
# Cli menu colors configs
colors: str = 'on'
colors: str = 'off'
# Wget options
wget_options = '-c -N'