Theme.qml was the largest remaining thing in this desktop that could only be changed by editing a file, and typeface is the first thing someone changes when they want a desktop to feel like theirs. Interface font, icon font, and the base text size are settings now. The two font choices are deliberately separate lists. Theme.fontMono is used only to draw glyphs -- workspace pills, the status cluster, search icons -- so a plain monospace family there replaces every icon in the shell with tofu. The picker offers only Nerd Fonts for that slot and says why. Candidates are rendered in the family they name. A list of font names set in the current font tells you nothing about what you are choosing. The four type sizes derive from the base rather than being stored separately, so the relationship between body, caption, heading and title survives a change instead of four numbers drifting apart. hypr/looks.lua reads the same key. Following the preference only on the QML side would leave the compositor and the shell disagreeing about the interface font, which nobody notices until a tooltip renders in a different typeface. Only a family this machine reports is accepted: the value reaches hl.config as a string, and a settings file moved between machines will name fonts that are not installed. A missing family is reported rather than silently substituted by fontconfig. Also collapses the wallpaper grid to two rows. Sixty tiles is two screens of pictures on a page that also holds typography, window geometry and effects -- everything below it was unreachable without scrolling past all of them. Claude-Session: https://claude.ai/code/session_01BRvzt4H8XXLPVH5MyYdk9L
57 lines
1.8 KiB
Bash
Executable File
57 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Lists installed font families, split by what they are usable for.
|
|
#
|
|
# Two separate questions get asked of fonts here, and they have different
|
|
# answers:
|
|
#
|
|
# interface proportional families suitable for reading UI text
|
|
# monospace fixed-pitch families
|
|
# icons families carrying Nerd Font glyphs
|
|
#
|
|
# The icon distinction matters more than it looks. Theme.fontMono is used ONLY
|
|
# to draw glyphs -- the workspace pills, the status cluster, the search icon --
|
|
# and picking a monospace family without those glyphs replaces every icon in the
|
|
# shell with tofu. So they are reported separately rather than lumped in with
|
|
# monospace, and the picker can say so.
|
|
#
|
|
# fc-list reports one line per style, so families are deduplicated here. The
|
|
# first comma-separated alias is the canonical name Qt will match.
|
|
|
|
set -euo pipefail
|
|
|
|
emit() {
|
|
# $1: fontconfig pattern, $2: json key
|
|
fc-list "$1" family 2>/dev/null \
|
|
| sed 's/,.*//' \
|
|
| sed 's/^[[:space:]]*//;s/[[:space:]]*$//' \
|
|
| grep -v '^$' \
|
|
| sort -u
|
|
}
|
|
|
|
json_array() {
|
|
local first=true
|
|
printf '['
|
|
while IFS= read -r line; do
|
|
[[ -n "$line" ]] || continue
|
|
[[ "$first" == true ]] || printf ','
|
|
first=false
|
|
printf '%s' "$(printf '%s' "$line" | jq -Rs 'rtrimstr("\n")')"
|
|
done
|
|
printf ']'
|
|
}
|
|
|
|
# spacing=100 is fontconfig's mono flag. Proportional is everything else.
|
|
mono="$(emit ':spacing=100')"
|
|
all="$(emit ':')"
|
|
interface="$(comm -23 <(printf '%s\n' "$all") <(printf '%s\n' "$mono"))"
|
|
icons="$(printf '%s\n' "$all" | grep -i 'nerd font' || true)"
|
|
|
|
printf '{"interface":'
|
|
printf '%s\n' "$interface" | json_array
|
|
printf ',"monospace":'
|
|
printf '%s\n' "$mono" | json_array
|
|
printf ',"icons":'
|
|
printf '%s\n' "$icons" | json_array
|
|
printf '}\n'
|