From 492b420aad536ecfb3579389f4c3cc813323cd27 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 26 May 2026 02:11:45 +0200 Subject: [PATCH] Open recording menu from indicator --- shell/plugins/bar/indicators/ScreenRecording.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell/plugins/bar/indicators/ScreenRecording.qml b/shell/plugins/bar/indicators/ScreenRecording.qml index 95e31f54..271e1c39 100644 --- a/shell/plugins/bar/indicators/ScreenRecording.qml +++ b/shell/plugins/bar/indicators/ScreenRecording.qml @@ -36,6 +36,8 @@ BarIndicator { } onPressed: function() { - if (root.bar) root.bar.run("omarchy-capture-screenrecording") + if (root.bar) { + root.bar.run(root.recording ? "omarchy-capture-screenrecording --stop-recording" : "omarchy-menu toggle trigger.capture.screenrecord") + } } }