Just clipboard

This commit is contained in:
David Heinemeier Hansson
2026-05-20 14:09:09 +02:00
parent cdd3175b5b
commit b7c0e10288
7 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ User-installed plugins live alongside these conceptually but on disk under
| Launcher | `omarchy.launcher` | `overlay` | `launcher/Launcher.qml` |
| Image picker | `omarchy.image-picker` | `overlay` | `image-picker/ImagePicker.qml` |
| Emoji picker | `omarchy.emoji-picker` | `overlay` | `emoji-picker/EmojiPicker.qml` |
| Clipboard mgr | `omarchy.clipboard-picker`| `overlay` | `clipboard-picker/ClipboardPicker.qml`|
| Clipboard mgr | `omarchy.clipboard` | `overlay` | `clipboard/Clipboard.qml` |
| Omarchy menu | `omarchy.menu` | `menu` | `menu/Menu.qml` |
| Notifications | `omarchy.notifications` | `service` | `notifications/Service.qml` |
| Battery | `omarchy.battery` | `service` | `services/battery/Service.qml` |
@@ -17,7 +17,7 @@ Item {
property string historyPath: Quickshell.env("HOME") + "/.local/state/omarchy/clipboard-history.json"
property string captureScript: root.omarchyPath + "/shell/scripts/clipboard-capture.sh"
// Shares the [menu] surface tokens themes that style the menu also
// style the clipboard picker. Selected-row colors composed in the
// style the clipboard. Selected-row colors composed in the
// singleton so consumers drop them straight into Rectangle bindings.
property color background: Color.menu.background
property color foreground: Color.menu.text
@@ -241,7 +241,7 @@ Item {
visible: root.opened
anchors { top: true; bottom: true; left: true; right: true }
color: "transparent"
WlrLayershell.namespace: "omarchy-clipboard-picker"
WlrLayershell.namespace: "omarchy-clipboard"
WlrLayershell.layer: WlrLayer.Overlay
WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive
exclusionMode: ExclusionMode.Ignore
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "omarchy.clipboard-picker",
"name": "Clipboard picker",
"id": "omarchy.clipboard",
"name": "Clipboard",
"version": "1.0.0",
"author": "Omarchy",
"description": "A clipboard manager to view and paste history",
@@ -10,6 +10,6 @@
],
"keepLoaded": true,
"entryPoints": {
"overlay": "ClipboardPicker.qml"
"overlay": "Clipboard.qml"
}
}