feat: add a new setting that disables the display of the disk usage (#2136)

This commit is contained in:
Gabriel Alencar
2023-02-15 19:30:48 -03:00
committed by GitHub
parent 60d1e2d291
commit 428c1c606d
29 changed files with 71 additions and 26 deletions

View File

@@ -55,6 +55,8 @@ you want to change. Other options will remain unchanged.`,
set.Branding.Color = mustGetString(flags, flag.Name)
case "branding.disableExternal":
set.Branding.DisableExternal = mustGetBool(flags, flag.Name)
case "branding.disableUsedPercentage":
set.Branding.DisableUsedPercentage = mustGetBool(flags, flag.Name)
case "branding.files":
set.Branding.Files = mustGetString(flags, flag.Name)
}