mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* 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>
5 lines
159 B
Bash
Executable File
5 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cmd="$*"
|
|
exec setsid uwsm app -- alacritty -o font.size=9 --class=Omarchy --title=Omarchy -e bash -c "omarchy-show-logo; $cmd; omarchy-show-done"
|