feat(titlebar): custom Linux title bar with now-playing display

- set_decorations(false) on Linux at startup via #[cfg(target_os = "linux")]
- New TitleBar component: drag region + minimize/maximize/close buttons
- Currently playing track (▶/⏸ + artist – title) shown in the center
- app-shell grid gains a 32px titlebar row when data-titlebar is set
- IS_LINUX utility constant via navigator.platform
- macOS and Windows are completely unaffected

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Psychotoxical
2026-04-07 21:12:17 +02:00
parent dd4e2f1162
commit d49137475f
5 changed files with 165 additions and 1 deletions
+92
View File
@@ -27,6 +27,98 @@
background: var(--bg-app);
}
/* ─── Custom title bar (Linux only — decorations: false) ─── */
:root {
--titlebar-height: 32px;
}
.app-shell[data-titlebar] {
grid-template-rows: var(--titlebar-height) 1fr var(--player-height);
grid-template-areas:
"titlebar titlebar titlebar"
"sidebar main queue"
"player player player";
}
.titlebar {
grid-area: titlebar;
display: flex;
align-items: center;
justify-content: space-between;
background: var(--bg-sidebar);
border-bottom: 1px solid var(--border-subtle);
padding: 0 6px 0 12px;
height: var(--titlebar-height);
user-select: none;
}
.titlebar-title {
font-size: 12px;
font-weight: 600;
color: var(--text-muted);
letter-spacing: 0.02em;
pointer-events: none;
flex: 0 0 auto;
}
.titlebar-track {
position: absolute;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
gap: 6px;
max-width: 40%;
pointer-events: none;
}
.titlebar-track-state {
font-size: 9px;
color: var(--accent);
flex-shrink: 0;
}
.titlebar-track-text {
font-size: 12px;
color: var(--text-secondary);
max-width: 100%;
}
.titlebar-controls {
display: flex;
gap: 2px;
flex: 0 0 auto;
}
.titlebar-btn {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 24px;
border: none;
background: transparent;
color: var(--text-muted);
border-radius: var(--radius-sm);
cursor: pointer;
transition: background var(--transition-fast), color var(--transition-fast);
}
.titlebar-btn:hover {
background: var(--bg-hover);
color: var(--text-primary);
}
.titlebar-btn-close:hover {
background: var(--danger);
color: #fff;
}
/* Resizer handles must start below the titlebar */
.app-shell[data-titlebar] .resizer {
top: var(--titlebar-height);
}
/* ─── Resizer Handles ─── */
.resizer {
position: absolute;