mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-30 05:29:24 +00:00
13 lines
284 B
Bash
Executable File
13 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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
|