summaryrefslogtreecommitdiffstats
path: root/utils/fontconfig/test.sh
blob: 8dabbbba7e5f7d9189499f17723fd2f31ad0ed16 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

case "$1" in
	fontconfig)
		# Rebuild cache (succeeds even if no fonts are installed)
		fc-cache 2>/dev/null
		# List fonts; empty output is valid when no fonts are present
		fc-list > /dev/null
		;;
esac