Give services their own place

This commit is contained in:
David Heinemeier Hansson
2026-05-20 14:03:56 +02:00
parent 41425481db
commit 4f1ef8d95f
8 changed files with 27 additions and 13 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ User-installed plugins live alongside these conceptually but on disk under
| Clipboard mgr | `omarchy.clipboard-picker`| `overlay` | `clipboard-picker/ClipboardPicker.qml`|
| Omarchy menu | `omarchy.menu` | `menu` | `menu/Menu.qml` |
| Notifications | `omarchy.notifications` | `service` | `notifications/Service.qml` |
| Battery mon. | `omarchy.battery-monitor` | `service` | `battery-monitor/Service.qml` |
| Idle monitor | `omarchy.idle` | `service` | `idle/Service.qml` |
| Battery | `omarchy.battery` | `service` | `services/battery/Service.qml` |
| Idle | `omarchy.idle` | `service` | `services/idle/Service.qml` |
| Lock screen | `omarchy.lock` | `service` | `lock/Service.qml` |
| OSD | `omarchy.osd` | `panel` | `osd/Osd.qml` |
| Polkit agent | `omarchy.polkit` | `service` | `polkit/PolkitAgent.qml` |
@@ -13,7 +13,7 @@ Item {
PersistentProperties {
id: persisted
reloadableId: "omarchy-battery-monitor"
reloadableId: "omarchy-battery"
property bool notifiedLowBattery: false
}
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "omarchy.battery-monitor",
"name": "Battery Monitor",
"id": "omarchy.battery",
"name": "Battery",
"version": "1.0.0",
"author": "Omarchy",
"description": "Low battery warning service",
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "omarchy.idle",
"name": "Idle Monitor",
"name": "Idle",
"version": "1.0.0",
"author": "Omarchy",
"description": "Quickshell-based idle detection for screensaver, lock, and display wake.",