From 43a8406d44d0600ebe78b75707971ca37fcd4c21 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 16 May 2026 12:48:43 +0200 Subject: [PATCH] We don't need action icons --- default/quickshell/omarchy-shell/plugins/menu/Menu.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default/quickshell/omarchy-shell/plugins/menu/Menu.qml b/default/quickshell/omarchy-shell/plugins/menu/Menu.qml index 0fc4be28..fc347b5e 100644 --- a/default/quickshell/omarchy-shell/plugins/menu/Menu.qml +++ b/default/quickshell/omarchy-shell/plugins/menu/Menu.qml @@ -1020,9 +1020,9 @@ Item { } Text { - text: row.kind === "menu" || row.kind === "link" ? "›" : (row.kind === "back" ? "" : "↵") + text: row.kind === "menu" || row.kind === "link" ? "›" : "" color: index === root.selectedIndex ? root.accent : root.foreground - opacity: row.kind === "back" ? 0 : 0.36 + opacity: row.kind === "menu" || row.kind === "link" ? 0.36 : 0 font.family: root.fontFamily font.pixelSize: 16 font.weight: Font.Normal