From d7b0a3b023b5e5cdbe7948c3a5848006fa01c2b1 Mon Sep 17 00:00:00 2001 From: Erik Dubois Date: Sat, 26 Jun 2021 12:17:15 +0200 Subject: [PATCH] alacritty and urxvt support font --- AUR/install-zsh-theme-powerlevel10k-git-v1.sh | 34 +++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/AUR/install-zsh-theme-powerlevel10k-git-v1.sh b/AUR/install-zsh-theme-powerlevel10k-git-v1.sh index 0c29c63a..ecaef10a 100755 --- a/AUR/install-zsh-theme-powerlevel10k-git-v1.sh +++ b/AUR/install-zsh-theme-powerlevel10k-git-v1.sh @@ -150,7 +150,8 @@ fi #---------------------------------------------------------------------------------- zshPath="/home/"$USER"/.zshrc" - +alacrittyPath="/home/"$USER"/.config/alacritty/alacritty.yml" +xresourcesPath="/home/"$USER"/.Xresources" tput setaf 1 echo "######################################################################################" @@ -188,6 +189,31 @@ echo ' typeset -g POWERLEVEL9K_INSTANT_PROMPT=quiet' | sudo tee --append $zshPath echo +tput setaf 1 +echo "######################################################################################" +echo "Beware that we change the font in ~/.config/alacritty/alacritty.yml" +echo "######################################################################################" +tput sgr0 + +FIND='family: hack' + +REPLACE='family: MesloLGS NF' + +sed -i "s/$FIND/$REPLACE/g" $alacrittyPath + + +tput setaf 1 +echo "######################################################################################" +echo "Beware that we change the font in ~/.Xresources for urxvt" +echo "######################################################################################" +tput sgr0 + +FIND='xft:Monospace:regular:size=11' + +REPLACE='xft:MesloLGS NF:size=11' + +sed -i "s/$FIND/$REPLACE/g" $xresourcesPath + tput setaf 3 echo "######################################################################################" echo "This package has been created for ZSH" @@ -199,4 +225,8 @@ tput setaf 2 echo "######################################################################################" echo "The package has been installed" echo "######################################################################################" -tput sgr0 \ No newline at end of file +tput sgr0 + + + +