Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions config/noctalia/plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
5 changes: 4 additions & 1 deletion theme/noctalia-plugins/stoa-vitals/Panel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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) ──
Expand Down
Loading