mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
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 <david@hey.com>
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user