From 3e664286cc02b367cea5ccc3087bbe8b95ce14fe Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 23 Jul 2026 20:09:39 -0700 Subject: [PATCH] Use upcase consistently for menu tooltips --- shell/plugins/bar/indicators/TmuxAlert.qml | 2 +- shell/plugins/bar/widgets/SystemUpdate.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/plugins/bar/indicators/TmuxAlert.qml b/shell/plugins/bar/indicators/TmuxAlert.qml index 430b9dfb..14a09e0d 100644 --- a/shell/plugins/bar/indicators/TmuxAlert.qml +++ b/shell/plugins/bar/indicators/TmuxAlert.qml @@ -14,7 +14,7 @@ BarIndicator { activeText: "󰆍" inactiveText: "󰆍" activeTooltipText: tooltip - inactiveTooltipText: "No terminal is waiting" + inactiveTooltipText: "No Terminal Waiting" function refresh() { if (statusProc.running) refreshPending = true diff --git a/shell/plugins/bar/widgets/SystemUpdate.qml b/shell/plugins/bar/widgets/SystemUpdate.qml index e1b2078e..11642c35 100644 --- a/shell/plugins/bar/widgets/SystemUpdate.qml +++ b/shell/plugins/bar/widgets/SystemUpdate.qml @@ -59,7 +59,7 @@ BarWidget { text: "\uf021" slotSize: Style.bar.statusSlot fontSize: Style.font.caption - tooltipText: "" + tooltipText: "Pending Omarchy Updates" onPressed: root.runUpdate() } }