mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
vscode font config (#205)
This commit is contained in:
parent
22efd208e5
commit
44034a57f5
|
@ -70,6 +70,8 @@ RUN buildDeps=' \
|
|||
&& apt-get purge -y --auto-remove $buildDeps
|
||||
|
||||
COPY start.sh /usr/local/bin/start.sh
|
||||
COPY local.conf /etc/fonts/local.conf
|
||||
|
||||
WORKDIR $HOME
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/start.sh" ]
|
||||
|
|
34
vscode/local.conf
Normal file
34
vscode/local.conf
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version='1.0'?>
|
||||
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
|
||||
<fontconfig>
|
||||
<match target="font">
|
||||
<edit mode="assign" name="rgba">
|
||||
<const>rgb</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit mode="assign" name="hinting">
|
||||
<bool>true</bool>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit mode="assign" name="hintstyle">
|
||||
<const>hintslight</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit mode="assign" name="antialias">
|
||||
<bool>true</bool>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit mode="assign" name="lcdfilter">
|
||||
<const>lcddefault</const>
|
||||
</edit>
|
||||
</match>
|
||||
<match target="font">
|
||||
<edit name="embeddedbitmap" mode="assign">
|
||||
<bool>false</bool>
|
||||
</edit>
|
||||
</match>
|
||||
</fontconfig>
|
Loading…
Reference in New Issue
Block a user