Load Omarchy fontconfig after generic aliases

This commit is contained in:
Ryan Hughes
2026-06-06 19:31:51 -04:00
parent d2c1544d78
commit fc6feedae5
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -50,7 +50,7 @@ fi
# is package-owned; create a user override only when the user changes fonts.
fontconfig_file="$HOME/.config/fontconfig/fonts.conf"
if [[ ! -f $fontconfig_file ]]; then
fontconfig_default="$omarchy_root/default/fontconfig/conf.avail/30-omarchy.conf"
fontconfig_default="$omarchy_root/default/fontconfig/conf.avail/50-omarchy.conf"
if [[ ! -f $fontconfig_default ]]; then
echo "Default fontconfig file not found: $fontconfig_default" >&2
exit 1
@@ -59,7 +59,7 @@ if [[ ! -f $fontconfig_file ]]; then
cp "$fontconfig_default" "$fontconfig_file"
fi
# We own the markup in 30-omarchy.conf, so the monospace block is predictable:
# We own the markup in 50-omarchy.conf, so the monospace block is predictable:
# the <string>FAMILY</string> immediately after <string>monospace</string> is
# the family we're replacing.
tmp=$(mktemp)