waybar and loadscreen update

This commit is contained in:
2025-11-29 17:11:09 +00:00
parent 1b356dd6aa
commit 757386f611
4 changed files with 8 additions and 11 deletions
+1 -1
View File
@@ -651,7 +651,7 @@
align-items: center;
justify-content: center;
height: 20px;
padding: 0 0.5rem;
padding: 0 0.35rem;
background: color-mix(in srgb, var(--bar-primary) 15%, transparent);
border: 1px solid color-mix(in srgb, var(--bar-primary) 30%, transparent);
border-radius: 4px;
+2 -2
View File
@@ -7,11 +7,11 @@ const featuredCount = sortedCards.filter(c => c.featured).length;
// Build the terminal lines with card grid
export const lines: TerminalLine[] = [
{ type: 'divider', content: 'PROJECTS' },
{ type: 'command', content: 'ls ~/projects --grid' },
{ type: 'divider', content: 'PROJECTS' },
{ type: 'blank', content: '' },
...projects.filter(p => p.featured).flatMap(project => [
{ type: 'header' as const, content: `(&primary,bold)${project.name}(&)` },
{ type: 'header' as const, content: `(&bold)${project.name}(&)` },
{ type: 'output' as const, content: `(&muted)${project.description}(&)` },
{ type: 'info' as const, content: `(&info)Tech: (&primary)${project.tech.join(', ')}(&)` },
...(project.github ? [{