diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-04-03 02:19:03 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-04-03 02:19:03 +0300 |
commit | 9233090127d41a1b44ae566ab7bb6939e66a2641 (patch) | |
tree | 300f806e9e06d8d425feb62261cb4f8da1641c40 | |
parent | d001819487e0545ecc0c5b40b70793b8d5828a70 (diff) | |
download | swayrice-9233090127d41a1b44ae566ab7bb6939e66a2641.tar.gz swayrice-9233090127d41a1b44ae566ab7bb6939e66a2641.zip |
fonts config
-rw-r--r-- | dotfiles/.config/fontconfig/fonts.conf | 39 | ||||
-rwxr-xr-x | install.sh | 2 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dotfiles/.config/fontconfig/fonts.conf b/dotfiles/.config/fontconfig/fonts.conf new file mode 100644 index 0000000..aadaacc --- /dev/null +++ b/dotfiles/.config/fontconfig/fonts.conf @@ -0,0 +1,39 @@ +<?xml version='1.0'?> +<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> +<fontconfig> + <alias> + <family>serif</family> + <prefer> + <family>IBM Plex Serif</family> + <family>Joy Pixels</family> + <family>BlexMono Nerd Font Mono</family> + <family>Noto Color Emoji</family> + </prefer> + </alias> + <alias> + <family>sans-serif</family> + <prefer> + <family>IBM Plex Sans</family> + <family>Joy Pixels</family> + <family>BlexMono Nerd Font Mono</family> + <family>Noto Color Emoji</family> + </prefer> + </alias> + <alias> + <family>sans</family> + <prefer> + <family>IBM Plex Sans</family> + <family>Noto Color Emoji</family> + <family>Joy Pixels</family> + <family>BlexMono Nerd Font Mono</family> + </prefer> + </alias> + <alias> + <family>monospace</family> + <prefer> + <family>BlexMono Nerd Font Mono</family> + <family>Noto Color Emoji</family> + <family>Joy Pixels</family> + </prefer> + </alias> +</fontconfig> @@ -10,7 +10,7 @@ fi CLONEDIR=$PWD # Install some basic programs -pacman -Sy --noconfirm base-devel zsh man networkmanager openvpn neovim sway swaylock swayidle waybar egl-wayland imv swaybg xorg-server-xwayland termite kitty qt5-wayland wl-clipboard dbus tmux htop bemenu mupdf mpd ncmpcpp mpc mpv mplayer libnotify mako cronie rsync grim slop ffmpeg w3m youtube-dl youtube-viewer newsboat wget curl krita inkscape darktable gcc make fontconfig pkg-config fakeroot papirus-icon-theme alsa-utils pulseaudio pulseaudio-bluetooth imagemagick ntfs-3g unzip unrar gnome-themes-standard gtk-engine-murrine telegram-desktop qt5ct r udisks2 perl-term-readline-gnu transmission-cli python-pynvim python-pip calcurse acpi acpid gnupg noto-fonts-cjk powerline-fonts python-pygit2 polkit polkit-gnome zathura zathura-pdf-mupdf zathura-djvu gst-libav vifm blueman bluez acpilight powertop accountsservice lightdm xdg-user-dirs abook ranger terminus-font qutebrowser jq stow wdiff texlive-most pandoc units +pacman -Sy --noconfirm base-devel zsh man networkmanager openvpn neovim sway swaylock swayidle waybar egl-wayland imv swaybg xorg-server-xwayland termite kitty qt5-wayland wl-clipboard dbus tmux htop bemenu mupdf mpd ncmpcpp mpc mpv mplayer libnotify mako cronie rsync grim slop ffmpeg w3m youtube-dl youtube-viewer newsboat wget curl krita inkscape darktable gcc make fontconfig pkg-config fakeroot papirus-icon-theme alsa-utils pulseaudio pulseaudio-bluetooth imagemagick ntfs-3g unzip unrar gnome-themes-standard gtk-engine-murrine telegram-desktop qt5ct r udisks2 perl-term-readline-gnu transmission-cli python-pynvim python-pip calcurse acpi acpid gnupg noto-fonts-cjk noto-fonts-emoji ttf-joypixels powerline-fonts python-pygit2 polkit polkit-gnome zathura zathura-pdf-mupdf zathura-djvu gst-libav vifm blueman bluez acpilight powertop accountsservice lightdm xdg-user-dirs abook ranger terminus-font qutebrowser jq stow wdiff texlive-most pandoc units # Copy system config files cp system/sudoers /etc/ |