Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Melroy van den Berg
dotfiles
Commits
1edc1856
Commit
1edc1856
authored
Jan 29, 2021
by
Melroy van den Berg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add font and anti-alias disabled
parent
13758822
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
README.md
README.md
+44
-0
No files found.
README.md
View file @
1edc1856
...
...
@@ -8,6 +8,50 @@ Besides my personal dot files (in [home](home/melroy)), you'll find some configu
## Shells
### Font
I use the terminal font "
[
Terminus Regular
](
http://terminus-font.sourceforge.net/
)
" (not TTF) 10 pt, install package:
`xfonts-terminus`
.
Add add a new file to
`~/.config/fontconfig/fonts.conf`
, with content:
```
xml
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match
target=
"pattern"
>
<test
qual=
"any"
name=
"family"
><string>
monospace
</string></test>
<edit
name=
"family"
mode=
"prepend"
binding=
"same"
><string>
Ubuntu Mono
</string></edit>
<edit
name=
"family"
mode=
"prepend"
binding=
"same"
><string>
Droid Sans Mono
</string></edit>
<edit
name=
"family"
mode=
"prepend"
binding=
"same"
><string>
Liberation Mono
</string></edit>
</match>
<match
target=
"pattern"
>
<test
qual=
"any"
name=
"family"
><string>
Ubuntu Mono
</string></test>
<edit
name=
"antialias"
mode=
"assign"
><bool>
false
</bool></edit>
<edit
name=
"hintstyle"
mode=
"assign"
><const>
hintslight
</const></edit>
<edit
name=
"hinting"
mode=
"assign"
><bool>
false
</bool></edit>
<edit
name=
"rgba"
mode=
"assign"
><const>
rgb
</const></edit>
<edit
name=
"lcdfilter"
mode=
"assign"
><const>
lcddefault
</const></edit>
</match>
<match
target=
"pattern"
>
<test
qual=
"any"
name=
"family"
><string>
Droid Sans Mono
</string></test>
<edit
name=
"antialias"
mode=
"assign"
><bool>
false
</bool></edit>
<edit
name=
"hintstyle"
mode=
"assign"
><const>
hintslight
</const></edit>
<edit
name=
"hinting"
mode=
"assign"
><bool>
false
</bool></edit>
<edit
name=
"rgba"
mode=
"assign"
><const>
rgb
</const></edit>
<edit
name=
"lcdfilter"
mode=
"assign"
><const>
lcddefault
</const></edit>
</match>
<match
target=
"pattern"
>
<test
qual=
"any"
name=
"family"
><string>
Liberation Mono
</string></test>
<edit
name=
"antialias"
mode=
"assign"
><bool>
false
</bool></edit>
<edit
name=
"hintstyle"
mode=
"assign"
><const>
hintslight
</const></edit>
<edit
name=
"hinting"
mode=
"assign"
><bool>
false
</bool></edit>
<edit
name=
"rgba"
mode=
"assign"
><const>
rgb
</const></edit>
<edit
name=
"lcdfilter"
mode=
"assign"
><const>
lcddefault
</const></edit>
</match>
</fontconfig>
```
### Starship
Install Starship, awesome prompt for any shell:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment