15 lines
338 B
Bash
Executable File
15 lines
338 B
Bash
Executable File
#!/bin/bash
|
|
|
|
font_name="$1"
|
|
|
|
if [[ -n "$font_name" && "$font_name" != "CNCLD" ]]; then
|
|
if fc-list | grep -iq "$font_name"; then
|
|
sed -i "s/family = \".*\"/family = \"$font_name\"/g" ~/.config/alacritty/alacritty.toml
|
|
else
|
|
echo "Font '$font_name' not found."
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Usage: omarchy-font-set <font-name>"
|
|
fi
|