1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-17 19:22:04 -04:00
Files
DankMaterialShell/core/internal/tui/states.go
bbedward c6e8067a22 core: add privesc package for privilege escalation
- Adds support for run0 and doas
fixes #998
2026-04-16 13:02:46 -04:00

24 lines
433 B
Go

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