From 6892304277e0045dee15c79d6fa7f02c35b37f62 Mon Sep 17 00:00:00 2001 From: Damian Ignaczak Date: Mon, 6 Oct 2025 21:28:57 +0200 Subject: [PATCH] fix(presentation-terminal): Ensure consistent ASCII logo alignment (#2260) * Fix comment * fix(presentation-terminal): Ensure consistent ASCII logo alignment The presentation terminal's ASCII logo, displayed by 'omarchy-show-logo', would misalign if the user had a non-default font size set in their global Alacritty configuration. This change fixes the issue by explicitly setting the font size to 9 for this specific terminal instance using the flag. This approach guarantees correct rendering of the logo without overriding the user's personal font preferences for their regular terminal sessions. --------- Co-authored-by: David Heinemeier Hansson --- bin/omarchy-launch-floating-terminal-with-presentation | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-launch-floating-terminal-with-presentation b/bin/omarchy-launch-floating-terminal-with-presentation index 0529f2ae..78e8b2db 100755 --- a/bin/omarchy-launch-floating-terminal-with-presentation +++ b/bin/omarchy-launch-floating-terminal-with-presentation @@ -1,4 +1,4 @@ #!/bin/bash cmd="$*" -exec setsid uwsm app -- alacritty --class=Omarchy --title=Omarchy -e bash -c "omarchy-show-logo; $cmd; omarchy-show-done" +exec setsid uwsm app -- alacritty -o font.size=9 --class=Omarchy --title=Omarchy -e bash -c "omarchy-show-logo; $cmd; omarchy-show-done"