Changed Default gui mode

This commit is contained in:
2026-05-03 23:41:48 +02:00
parent 4a407bdbb0
commit cd3d9043fe
2 changed files with 34 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ type Config struct {
NotificationsEnabled bool `json:"notifications_enabled"`
KeepTerminalOpen bool `json:"keep_terminal_open"`
ConfirmSelectedInstalls bool `json:"confirm_selected_installs"`
PreferElectron bool `json:"prefer_electron"`
IgnoredPackages []string `json:"ignored_packages"`
}
@@ -31,6 +32,7 @@ func Default() Config {
NotificationsEnabled: true,
KeepTerminalOpen: true,
ConfirmSelectedInstalls: true,
PreferElectron: true,
IgnoredPackages: []string{},
}
}