Convert the caelestia shell to the NoSignal "design_handoff_quickshell_shell" spec: a slim translucent top bar with floating glass popouts, fixed dark-glass chrome + Material You dynamic accent, square corners, JetBrains Mono. - Theme singleton (services/Theme.qml): design tokens; accent = m3primary (dynamic), fixed glass/text, square radii. - New slim bar as its own PanelWindow (modules/nsbar/NsBar.qml), additive in shell.qml; reuses caelestia services + components. Helpers: BarPill, NsWorkspaces (numbered, active=accent pill), NsOverlay (popout host, one-at-a- time via services/NsShell.qml, outside-click + Esc), components/NsPanel + components/NsSwitch. - Old caelestia frame removed: BarWrapper collapsed; ContentWindow border 0 + borderTop 0; Exclusions zones 0. Drawer engine kept for launcher/OSD/lock. - 9 popouts (modules/nsbar/panels/): Calendar, QuickSettings, Network, Bluetooth, Notifications, Audio, SystemTray, Overview, PowerMenu. - Clock restyled (date muted + time DemiBold). - nexus (Settings) reskinned: dark-glass window + cards, square corners (Nexus.qml, common/ConnectedRect.qml) — keeps all pages/functionality. Launcher kept as-is. Font (JetBrainsMono) + rounding.scale=0 + Super+Alt+Space nexus bind are caelestia/hypr CONFIG and ship in the OS, not this fork. Next: full Material Symbols -> Nerd Font icon remap. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
43 lines
1.2 KiB
QML
43 lines
1.2 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
// NoSignal floating popout container: dark-glass card, 1px border, 4px radius.
|
|
// Content goes in a ColumnLayout (default children). Sizes to its content height;
|
|
// set `width` on the instance. A background MouseArea swallows clicks so clicking
|
|
// inside the panel doesn't fall through to the overlay's close-catcher.
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import qs.services
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property int pad: Theme.size.panelPad
|
|
property alias spacing: holder.spacing
|
|
default property alias content: holder.data
|
|
|
|
// anchoring hint read by NsOverlay: "center" | "right" | "trigger"
|
|
property string anchorMode: "right"
|
|
|
|
implicitHeight: holder.implicitHeight + root.pad * 2
|
|
color: Theme.panelBg
|
|
radius: Theme.radius.panel
|
|
border.width: 1
|
|
border.color: Theme.panelBorder
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
// swallow clicks/hover so they don't reach the overlay close-catcher
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: holder
|
|
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.margins: root.pad
|
|
spacing: Theme.size.gap
|
|
}
|
|
}
|