- Fonts
- Download "CaskaydiaCove Nerd Font Mono" from https://www.nerdfonts.com/font-downloads
- Place .otf files at
~/.local/share/fonts
(create folder if needed) - Create/edit file
/etc/fonts/local.conf
with contents from file below - run
fc-cache
to refresh fonts cache - close/reopen your application (konsole, kate, ...)
- lf
- lf is a terminal file manager
- follow instructions https://github.com/brccabral/lf_linux
Last active
September 29, 2022 16:29
-
-
Save brccabral/7e61b7e5b8f7e94c581cd04c6dcedb13 to your computer and use it in GitHub Desktop.
Arch Linux Customizations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<alias> | |
<family>sans-serif</family> | |
<prefer> | |
<family>CaskaydiaCove Nerd Font Mono</family> | |
<family>Noto Sans</family> | |
<family>Noto Color Emoji</family> | |
<family>Noto Emoji</family> | |
<family>DejaVu Sans</family> | |
</prefer> | |
</alias> | |
<alias> | |
<family>serif</family> | |
<prefer> | |
<family>CaskaydiaCove Nerd Font Mono</family> | |
<family>Noto Serif</family> | |
<family>Noto Color Emoji</family> | |
<family>Noto Emoji</family> | |
<family>DejaVu Serif</family> | |
</prefer> | |
</alias> | |
<alias> | |
<family>monospace</family> | |
<prefer> | |
<family>CaskaydiaCove Nerd Font Mono</family> | |
<family>Noto Mono</family> | |
<family>Noto Color Emoji</family> | |
<family>Noto Emoji</family> | |
<family>DejaVu Sans Mono</family> | |
</prefer> | |
</alias> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment