You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds a toggle in Display settings to switch between centering the panel on the bar (default) and anchoring it to the clicked icon position.
When enabled (default), the panel opens centered on the bar. When disabled, the panel opens near the icon that was clicked, which is useful when the widget is placed on the right or left edge of the bar.
New setting: centerOnBar (boolean, default true) in manifest.json.
Tested this on Omarchy 4 (Quattro) with the widget in the bar's right section — the case it's aimed at. A panel opening centre-screen while its own chip sits on the right is exactly what sent me looking for this setting. The toggle appears in Display settings and switching it off anchors the panel under the chip as expected.
Worth noting the root cause, since it makes this more than a preference: the panel hardcodes centerOnBar: true, which matches the stock clock and weather panels — but both of those are centre-section widgets, while OmaPrayers' own manifest declares "defaultSection": "right". So out of the box the default placement and the default panel position disagree with each other.
Two things for whoever picks this up:
The branch is 3 commits behind main, but cherry-picks onto d641940 (v2.3.2) with no conflicts — only manifest.json needs auto-merging.
On that merged tree, ./tests/run passes in full and omarchy-plugin-validate accepts the manifest.
Naming the setting centerOnBar after KeyboardPanel's own property reads well, and the true default means nothing changes for existing users.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a toggle in Display settings to switch between centering the panel on the bar (default) and anchoring it to the clicked icon position.
When enabled (default), the panel opens centered on the bar. When disabled, the panel opens near the icon that was clicked, which is useful when the widget is placed on the right or left edge of the bar.
New setting:
centerOnBar(boolean, defaulttrue) in manifest.json.