Set default monospace font to Liberation

This commit is contained in:
Doug Burks
2020-08-30 16:42:44 -04:00
committed by GitHub
parent 2f09156a02
commit 9680270b20

View File

@@ -69,6 +69,18 @@ MimeType=application/x-pcap;
Categories=Network;
EOF
# Set default monospace font to Liberation
cat << EOF >> /etc/fonts/local.conf
<match target="pattern">
<test name="family" qual="any">
<string>monospace</string>
</test>
<edit binding="strong" mode="prepend" name="family">
<string>Liberation Mono</string>
</edit>
</match>
EOF
# Install Wireshark for Gnome
yum -y install wireshark-gnome;