Skip to content

Commit

Permalink
alacritty and urxvt support font
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdubois committed Jun 26, 2021
1 parent 08dbeeb commit d7b0a3b
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions AUR/install-zsh-theme-powerlevel10k-git-v1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ fi
#----------------------------------------------------------------------------------

zshPath="/home/"$USER"/.zshrc"

alacrittyPath="/home/"$USER"/.config/alacritty/alacritty.yml"
xresourcesPath="/home/"$USER"/.Xresources"

tput setaf 1
echo "######################################################################################"
Expand Down Expand Up @@ -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"
Expand All @@ -199,4 +225,8 @@ tput setaf 2
echo "######################################################################################"
echo "The package has been installed"
echo "######################################################################################"
tput sgr0
tput sgr0




0 comments on commit d7b0a3b

Please sign in to comment.