omarchy-ui 0.0.4-x86_64-linux → 0.0.6-x86_64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b39c650e3541f41aea662dccf79373f790cc9fc84466b065ccb7b8836d74739e
4
- data.tar.gz: 985d17d6917e19b2fc10996d7f20d8a99e6dd49bb5160a88aa7122220056e025
3
+ metadata.gz: 8c8e67a6ee733ab185881c3af8614d428d5888fcea3fed015780ccc4bae6a3b5
4
+ data.tar.gz: 648c98f47aea9d30e857809a65052bdb2ca374ecaebc122a3ea192b99aa2b815
5
5
  SHA512:
6
- metadata.gz: cfa24ef79ecfdffcb0e00c4243b26600a4df4e2b4cf197aad307bceef54011631c482a15d055b2c88710acda2e8baceba0ebec1106ae2c290850016ea70793b9
7
- data.tar.gz: bf1ed984d03aea86c9db37cdd3dc1556faad23d23fef443d81669770a3e7431e87aa8632932794be1ad820117a98181990764c6401cb3de44513b9cc07d8e768
6
+ metadata.gz: 5f7664f1dafd992a22872bc029e8c48a242452ad5a8df9185a2aa0707b94b14df8724bd2e8c4fe3bd79afedeaf957e838fb1e27ecabb9467ba0ec41806e8f6d8
7
+ data.tar.gz: 97ec7a87a20e40653d8247cf69fd2534febb44b89ea7601355ada885d5f1978753332418ae756c9cf2e934a5534d108f43a850eca1c2ef3dc1c741435243d4ea
data/App.qml CHANGED
@@ -82,7 +82,7 @@ ShellRoot {
82
82
  }
83
83
  }
84
84
 
85
- ControlNode {
85
+ ZuiRenderer {
86
86
  id: renderer
87
87
  anchors {
88
88
  left: parent.left
@@ -91,7 +91,7 @@ ShellRoot {
91
91
  bottom: parent.bottom
92
92
  margins: Style.space(24)
93
93
  }
94
- visible: root.activeSurface !== "" && service.rootId(root.activeSurface) !== ""
94
+ visible: renderReady
95
95
  bridge: service
96
96
  surfaceName: root.activeSurface
97
97
  controlId: service.rootId(surfaceName)
@@ -102,7 +102,8 @@ ShellRoot {
102
102
  Text {
103
103
  anchors.centerIn: parent
104
104
  visible: !renderer.visible
105
- text: service.lastError !== "" ? service.lastError : "Starting Ruby UI…"
105
+ text: service.lastError !== "" ? service.lastError
106
+ : "Starting Ruby UI with Zui…"
106
107
  color: Color.foreground
107
108
  font.family: Style.font.family
108
109
  font.pixelSize: Style.font.body
data/BarWidget.qml CHANGED
@@ -16,10 +16,10 @@ BarWidget {
16
16
  implicitWidth: Math.max(Style.bar.iconSlot, renderer.implicitWidth + Style.space(12))
17
17
  implicitHeight: barSize
18
18
 
19
- ControlNode {
19
+ ZuiRenderer {
20
20
  id: renderer
21
21
  anchors.centerIn: parent
22
- visible: root.rubyService && root.rootControlId !== ""
22
+ visible: renderReady
23
23
  bridge: root.rubyService
24
24
  surfaceName: root.surfaceName
25
25
  controlId: root.rootControlId
data/Panel.qml CHANGED
@@ -12,6 +12,9 @@ Item {
12
12
  property var service: null
13
13
  property bool opened: false
14
14
  property string surfaceName: "counter"
15
+ readonly property string layerNamespace: manifest && manifest.id
16
+ ? String(manifest.id)
17
+ : "omarchy-ui"
15
18
 
16
19
  readonly property string rootControlId: service ? service.rootId(surfaceName) : ""
17
20
 
@@ -40,7 +43,7 @@ Item {
40
43
  anchors { top: true; right: true; bottom: true; left: true }
41
44
  color: "transparent"
42
45
  exclusionMode: ExclusionMode.Ignore
43
- WlrLayershell.namespace: "omarchy-ruby-ui-poc"
46
+ WlrLayershell.namespace: root.layerNamespace
44
47
  WlrLayershell.layer: WlrLayer.Overlay
45
48
  WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive
46
49
 
@@ -74,10 +77,10 @@ Item {
74
77
  onClicked: {}
75
78
  }
76
79
 
77
- ControlNode {
80
+ ZuiRenderer {
78
81
  id: renderer
79
82
  anchors.centerIn: parent
80
- visible: root.service && root.rootControlId !== ""
83
+ visible: renderReady
81
84
  bridge: root.service
82
85
  surfaceName: root.surfaceName
83
86
  controlId: root.rootControlId
@@ -94,7 +97,7 @@ Item {
94
97
  anchors.horizontalCenter: parent.horizontalCenter
95
98
  text: root.service && root.service.lastError !== ""
96
99
  ? root.service.lastError
97
- : "Starting Ruby UI…"
100
+ : "Starting Ruby UI with Zui…"
98
101
  color: Color.foreground
99
102
  font.family: Style.font.family
100
103
  font.pixelSize: Style.font.body