summaryrefslogtreecommitdiff
path: root/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go
diff options
context:
space:
mode:
Diffstat (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go')
-rw-r--r--raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go b/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go
deleted file mode 100644
index e3a2ca3..0000000
--- a/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package tui
-
-import "github.com/charmbracelet/lipgloss"
-
-func (m Model) renderBanner() string {
- logo := `
-██████╗ █████╗ ███╗ ██╗██╗ ██╗
-██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
-██║ ██║███████║██╔██╗ ██║█████╔╝
-██║ ██║██╔══██║██║╚██╗██║██╔═██╗
-██████╔╝██║ ██║██║ ╚████║██║ ██╗
-╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ `
-
- theme := TerminalTheme()
- style := lipgloss.NewStyle().
- Foreground(lipgloss.Color(theme.Primary)).
- Bold(true).
- MarginBottom(1)
-
- return style.Render(logo)
-}