omarchy/bin/omarchy-font-menu
2025-08-04 20:26:33 +02:00

17 lines
385 B
Bash
Executable File

#!/bin/bash
~/.local/share/omarchy/bin/omarchy-show-logo
font=$(
fc-list :spacing=100 -f "%{family[0]}\n" |
grep -v -i -E 'emoji|signwriting' |
sort -u |
gum choose --header "Choose terminal font"
)
if [[ -n "$font" ]]; then
sed -i "s/family = \".*\"/family = \"$font\"/g" ~/.config/alacritty/alacritty.toml
fi
gum spin --spinner "globe" --title "Done!" -- sleep 2