From 73d3d3a8aff1da16b98a52dcf31a07f5cd4aa4fc Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 17 May 2026 19:58:34 +0200 Subject: [PATCH] Truncate osd text --- default/quickshell/omarchy-shell/plugins/osd/Osd.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default/quickshell/omarchy-shell/plugins/osd/Osd.qml b/default/quickshell/omarchy-shell/plugins/osd/Osd.qml index f5e67c99..d1c78fe9 100644 --- a/default/quickshell/omarchy-shell/plugins/osd/Osd.qml +++ b/default/quickshell/omarchy-shell/plugins/osd/Osd.qml @@ -133,6 +133,9 @@ Item { font.bold: true font.pixelSize: 14 color: Color.foreground + elide: Text.ElideRight + maximumLineCount: 1 + clip: true } } }