From 4551b8920adca188338aa0871c09638d163790ea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 18 May 2026 14:29:43 +0200 Subject: [PATCH] Fix glyph notifications to be slim --- bin/omarchy-notification-send | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bin/omarchy-notification-send b/bin/omarchy-notification-send index 578ff29c..efcd0522 100755 --- a/bin/omarchy-notification-send +++ b/bin/omarchy-notification-send @@ -65,13 +65,15 @@ while (($# > 0)); do fi done -if [[ -n $glyph ]]; then - args+=(--hint=string:omarchy-glyph:$glyph) -fi - # Tag as a user-action toast so it pops through DND. See dnd-fix-plan.md. args+=("-a" "omarchy-action" "-u" "$urgency") +# Keep Omarchy action toasts compact by rendering glyphs inline instead of +# forcing the notification card's icon slot. +if [[ -n $glyph ]]; then + headline="$glyph $headline" +fi + if [[ -n $description ]]; then notify-send "${args[@]}" "$headline" "$description" else