diff options
Diffstat (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/messages.go')
| -rw-r--r-- | raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/messages.go | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/messages.go b/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/messages.go new file mode 100644 index 0000000..7c03098 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/messages.go @@ -0,0 +1,39 @@ +package tui + +import ( + "github.com/AvengeMedia/DankMaterialShell/core/internal/deps" + "github.com/AvengeMedia/DankMaterialShell/core/internal/distros" +) + +type logMsg struct { + message string +} + +type osInfoCompleteMsg struct { + info *distros.OSInfo + err error +} + +type depsDetectedMsg struct { + deps []deps.Dependency + err error +} + +type packageInstallProgressMsg struct { + progress float64 + step string + isComplete bool + needsSudo bool + commandInfo string + logOutput string + error error +} + +type packageProgressCompletedMsg struct{} + +type passwordValidMsg struct { + password string + valid bool +} + +type delayCompleteMsg struct{} |