mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Set color off by default
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
9ec96c6565
commit
86a5871193
2 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue