diff --git a/cli/cli.go b/cli/cli.go index a60c153..daaa998 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -112,7 +112,7 @@ const CONFIG_FILE = "/etc/rbinstall.knf" const NONE_VERSION = "- none -" // DEFAULT_CATEGORY_SIZE is default category column size -const DEFAULT_CATEGORY_SIZE = 20 +const DEFAULT_CATEGORY_SIZE = 22 // Default arch names const ( diff --git a/cli/task.go b/cli/task.go index 013a16b..99d490c 100644 --- a/cli/task.go +++ b/cli/task.go @@ -28,10 +28,8 @@ type Task struct { // ////////////////////////////////////////////////////////////////////////////////// // -var ( - spinnerFrames = []string{"⠸", "⠴", "⠤", "⠦", "⠇", "⠋", "⠉", "⠙"} - framesDelay = []time.Duration{75, 55, 35, 55, 75, 75, 75, 75} -) +var spinnerFrames = []string{"⠸", "⠴", "⠤", "⠦", "⠇", "⠋", "⠉", "⠙"} +var framesDelay = []time.Duration{75, 55, 35, 55, 75, 75, 75, 75} // ////////////////////////////////////////////////////////////////////////////////// //