summaryrefslogtreecommitdiff
path: root/raveos-theme/hyprland/theme-data/DankMaterialShell/core/internal/deps
diff options
context:
space:
mode:
Diffstat (limited to 'raveos-theme/hyprland/theme-data/DankMaterialShell/core/internal/deps')
-rw-r--r--raveos-theme/hyprland/theme-data/DankMaterialShell/core/internal/deps/detector.go51
1 files changed, 0 insertions, 51 deletions
diff --git a/raveos-theme/hyprland/theme-data/DankMaterialShell/core/internal/deps/detector.go b/raveos-theme/hyprland/theme-data/DankMaterialShell/core/internal/deps/detector.go
deleted file mode 100644
index e4f54a7..0000000
--- a/raveos-theme/hyprland/theme-data/DankMaterialShell/core/internal/deps/detector.go
+++ /dev/null
@@ -1,51 +0,0 @@
-package deps
-
-import (
- "context"
-)
-
-type DependencyStatus int
-
-const (
- StatusMissing DependencyStatus = iota
- StatusInstalled
- StatusNeedsUpdate
- StatusNeedsReinstall
-)
-
-type PackageVariant int
-
-const (
- VariantStable PackageVariant = iota
- VariantGit
-)
-
-type Dependency struct {
- Name string
- Status DependencyStatus
- Version string
- Description string
- Required bool
- Variant PackageVariant
- CanToggle bool
-}
-
-type WindowManager int
-
-const (
- WindowManagerHyprland WindowManager = iota
- WindowManagerNiri
-)
-
-type Terminal int
-
-const (
- TerminalGhostty Terminal = iota
- TerminalKitty
- TerminalAlacritty
-)
-
-type DependencyDetector interface {
- DetectDependencies(ctx context.Context, wm WindowManager) ([]Dependency, error)
- DetectDependenciesWithTerminal(ctx context.Context, wm WindowManager, terminal Terminal) ([]Dependency, error)
-}