#!/bin/bash # omarchy:summary=Show current monospace font # omarchy:examples=omarchy font current # fontconfig is the source of truth. fc-match returns a comma-separated # alias list (e.g. "JetBrainsMono Nerd Font,JetBrainsMono NF") so take # the first entry. fc-match monospace -f '%{family}\n' | head -n1 | cut -d, -f1