From 713a32e61dc55e240d5b14a4aae31bd1cdbbb8f1 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Mon, 18 May 2026 02:20:00 -0400 Subject: [PATCH] Bar settings + Add widget: include widget description in option rows --- .../omarchy-shell/plugins/settings/SettingsPanel.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/default/quickshell/omarchy-shell/plugins/settings/SettingsPanel.qml b/default/quickshell/omarchy-shell/plugins/settings/SettingsPanel.qml index f40f30a7..11c0ae79 100644 --- a/default/quickshell/omarchy-shell/plugins/settings/SettingsPanel.qml +++ b/default/quickshell/omarchy-shell/plugins/settings/SettingsPanel.qml @@ -780,7 +780,11 @@ Item { var list = root.availableToAdd(section.sectionKey) var out = [] for (var i = 0; i < list.length; i++) { - out.push({ value: list[i].id, label: list[i].name + (list[i].elsewhere ? " (elsewhere)" : "") }) + out.push({ + value: list[i].id, + label: list[i].name + (list[i].elsewhere ? " (elsewhere)" : ""), + description: list[i].description || "" + }) } return out }