diff --git a/config/noctalia/plugins.json b/config/noctalia/plugins.json index 8b64e1b..1b49f17 100644 --- a/config/noctalia/plugins.json +++ b/config/noctalia/plugins.json @@ -62,19 +62,19 @@ }, "stoa-doctor-pill": { "enabled": true, - "sourceUrl": "https://github.com/noctalia-dev/noctalia-plugins" + "sourceUrl": "https://github.com/VictorGSchneider/StoaLinux" }, "stoa-drive-pill": { "enabled": true, - "sourceUrl": "https://github.com/noctalia-dev/noctalia-plugins" + "sourceUrl": "https://github.com/VictorGSchneider/StoaLinux" }, "stoa-memento": { "enabled": true, - "sourceUrl": "https://github.com/noctalia-dev/noctalia-plugins" + "sourceUrl": "https://github.com/VictorGSchneider/StoaLinux" }, "stoa-vitals": { "enabled": true, - "sourceUrl": "https://github.com/noctalia-dev/noctalia-plugins" + "sourceUrl": "https://github.com/VictorGSchneider/StoaLinux" }, "sys-info-widget": { "enabled": true, diff --git a/install.sh b/install.sh index a26af67..2727cd6 100755 --- a/install.sh +++ b/install.sh @@ -85,6 +85,8 @@ _link "${STOA_DIR}/theme/noctalia-plugins/stoa-doctor-pill" \ "${CONFIG_DIR}/noctalia/plugins/stoa-doctor-pill" _link "${STOA_DIR}/theme/noctalia-plugins/stoa-drive-pill" \ "${CONFIG_DIR}/noctalia/plugins/stoa-drive-pill" +_link "${STOA_DIR}/theme/noctalia-plugins/stoa-vitals" \ + "${CONFIG_DIR}/noctalia/plugins/stoa-vitals" # Noctalia settings.json — opinionated Stoa seed (floating bar, Stoa # color scheme, EB Garamond, layout incl. screen-toolkit/clipper/ diff --git a/theme/noctalia-plugins/stoa-vitals/Panel.qml b/theme/noctalia-plugins/stoa-vitals/Panel.qml index 8b296c8..0e756a8 100644 --- a/theme/noctalia-plugins/stoa-vitals/Panel.qml +++ b/theme/noctalia-plugins/stoa-vitals/Panel.qml @@ -20,9 +20,12 @@ Item { property ShellScreen screen readonly property real contentPreferredWidth: 380 + // StackLayout has no currentItem (that's StackView) — index children[] + // by the active tab to size the panel to the visible page only. readonly property real contentPreferredHeight: header.implicitHeight + tabs.implicitHeight - + stack.currentItem.implicitHeight + + (stack.children[root.currentTab] + ? stack.children[root.currentTab].implicitHeight : 0) + Style.marginM * 3 // ── Aggregated status (from stoa-vitals-status) ──