1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-05 21:15:38 -05:00
Files
DankMaterialShell/backend/internal/tui/states.go
2025-11-12 17:18:45 -05:00

24 lines
441 B
Go

package tui
type ApplicationState int
const (
StateWelcome ApplicationState = iota
StateSelectWindowManager
StateSelectTerminal
StateMissingWMInstructions
StateDetectingDeps
StateDependencyReview
StateGentooUseFlags
StateGentooGCCCheck
StateAuthMethodChoice
StateFingerprintAuth
StatePasswordPrompt
StateInstallingPackages
StateConfigConfirmation
StateDeployingConfigs
StateInstallComplete
StateFinalComplete
StateError
)